how to do the Percentage formater for jquery grid?

Posted by rockers on Stack Overflow See other posts from Stack Overflow or by rockers
Published on 2010-06-15T20:48:24Z Indexed on 2010/06/15 20:52 UTC
Read the original article Hit count: 157

Filed under:

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

© Stack Overflow or respective owner

Related posts about jQuery