如何格式化 jqgrid 寻呼机上 viewrecord 中的数字?

发布于 2024-09-18 22:55:49 字数 178 浏览 5 评论 0原文

当存在大量页面时,寻呼机中的数字格式为“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

傲影 2024-09-25 22:55:49

您可以

$.jgrid.formatter.integer.thousandsSeparator=',';

在 grid.locale-en.js 文件(或您使用的其他语言环境文件)中设置或修改第 90 行

integer : {thousandsSeparator: " ", defaultValue: '0'},

(在最小化版本中,您应该搜索 integer:{thousandsSeparator:" " )到行

integer : {thousandsSeparator: ",", defaultValue: '0'},

顺便说一句,您当然可以设置 $.jgrid.formatter.integer.thousandsSeparator='',那么它将没有千位分隔符:而不是“11 223”,您将有“11223”而不是“11,223”。

You can set

$.jgrid.formatter.integer.thousandsSeparator=',';

or modify in the grid.locale-en.js file (or another locale file which you use) the line 90

integer : {thousandsSeparator: " ", defaultValue: '0'},

(in the minimized version you should search for integer:{thousandsSeparator:" ") to the line

integer : {thousandsSeparator: ",", defaultValue: '0'},

By 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".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文