how to do the Percentage formater for jquery grid?
- by rockers
i changed my grid column value in a currancyformate..
something like this..
grid.Columns.Find(c => c.DataField == "Marketvalue").Formatter = new CurrencyFormatter
{
DefaultValue = "",
DecimalPlaces = 2,
DecimalSeparator = ".",
ThousandsSeparator = ","
};
how to change the other column in % value.. I need to show in a percentage form using jquery
thanks