jqGrid国际化
我对 HTML 文件使用 jqGrid 网格表插件。如何国际化表格的列、标题等?我的意思是我将加载属性文件或更改变量,我的表模板将采用该语言?
I use jqGrid grid table plugin for my HTML files. How can I internationalize my table's column, header etc? I mean I will load a property file or change a variable, my table template will be in that language?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需将:替换
为您选择的语言,例如:
标准(英语)区域设置,雷德蒙德主题:
波兰语区域设置, Le Frog jQuery UI 主题:
来源
Simply replace:
with a language of your choice, like:
Standard (English) locale, Redmond theme:
Polish locale, Le Frog jQuery UI theme:
Source
我在 帖子。例如,请参阅演示。你可以按照我的建议自己做出改变。只需要修改“i18n/grid.locale-XX.js”文件,无需更改主要的 jqGrid 代码。
因此,您将能够实现支持多种语言的页面,默认语言将根据网络浏览器的语言进行选择。此外,您可以允许用户动态更改 jqGrid 语言,从
到
例如
。 PS 使用 jQuery 全球化插件的另一个旧建议 您可能也会感兴趣。
I wrote my suggestion how one can implement the jqGrid internationalization in the post. See the demo for example. You can make yourself the changes which I suggestion. One needs only to modify the "i18n/grid.locale-XX.js" files without changing of the main jqGrid code.
So you will be able to implement pages which supports many languages, the default language will be choosed based on the language of the web browser. Moreover you can allow the user to change the jqGrid language dynamically from
to
for example.
P.S. Another old suggestion to use jQuery Globalization plugin could be also interesting for you.
如果您使用的是4.8及以上版本,可以在网格控制中设置区域参数。
例如
$("#jqGrid").jqGrid({
...
地区 : 'cn',
...
});
If you're using version 4.8 and above, regional parameter can be set in grid control.
E.g
$("#jqGrid").jqGrid({
...
regional : 'cn',
...
});