0

是否有用于显示 Kb 或 Mb 文件大小的格式化程序选项JQ Grid

jQuery().ready(function ($) {
         var colModel = [     
                        { name: 'Size', index: 'Size', sortable: false, search: false, align: 'left', width: 100, formatoptions: {suffix:'kb'} },
                         ];

这似乎不起作用?请帮忙....

4

1 回答 1

1

尝试这个

formatter:'currency',formatoptions:{ decimalSeparator:".", thousandsSeparator: "", decimalPlaces: 0, prefix: "", suffix:" kb"}

我在小数点上有一些问题,这就是我使用decimalSeparator,thousandsSeparatorand的原因decimalPlaces,请根据您的要求使用它

于 2013-03-16T07:02:22.917 回答