Hi experts,
I want to make a field in a table coloured, So please guide me how to use formatter for a table field?
Piece of code that I have used for list formatter is like:
firstStatus: [ | ||||||
{ | ||||||
text:"{DeliveryStatus}", | ||||||
state:{ | ||||||
path:"DeliveryStatus", | ||||||
formatter: function(id) | ||||||
{ | ||||||
if(id == "Shipped") | ||||||
{ | ||||||
return "Success" | ||||||
} | ||||||
if(id == "Not Shipped") | ||||||
{ | ||||||
return "Error" | ||||||
} | ||||||
if(id == "In Process") | ||||||
{ | ||||||
return "Warning" | ||||||
} | ||||||
}}} | ||||||
] | ||||||
});
|