如何格式化 jqgrid 寻呼机上 viewrecord 中的数字?
当存在大量页面时,寻呼机中的数字格式为“11 223”,但我希望它为“11,223”
View 11 026 - 11 031 of 11 031
应该是
View 11,026 - 11,031 of 11,031
I搜索了 JQGrid 的文档但找不到执行此操作的方法。
When a large number of pages are present, the format of the numbers in the pager is "11 223" but I would like it to be "11,223"
View 11 026 - 11 031 of 11 031
should be
View 11,026 - 11,031 of 11,031
I searched the documentation for JQGrid but couldn't find a way to do this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以
在 grid.locale-en.js 文件(或您使用的其他语言环境文件)中设置或修改第 90 行
(在最小化版本中,您应该搜索
integer:{thousandsSeparator:" "
)到行顺便说一句,您当然可以设置
$.jgrid.formatter.integer.thousandsSeparator=''
,那么它将没有千位分隔符:而不是“11 223”,您将有“11223”而不是“11,223”。You can set
or modify in the grid.locale-en.js file (or another locale file which you use) the line 90
(in the minimized version you should search for
integer:{thousandsSeparator:" "
) to the lineBy the way, you can of cause set also
$.jgrid.formatter.integer.thousandsSeparator=''
, then it will be no thousand separator: instead of "11 223" you will have "11223" and not "11,223".