jqGrid国际化

发布于 2024-12-01 04:46:57 字数 78 浏览 0 评论 0原文

我对 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 技术交流群。

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

发布评论

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

评论(3

反差帅 2024-12-08 04:46:57

只需将:替换

<script src="js/lib/grid.locale-en.js"></script>

为您选择的语言,例如:

<script src="js/lib/grid.locale-pl.js"></script>

标准(英语)区域设置,雷德蒙德主题:

英语,雷德蒙德

波兰语区域设置, Le Frog jQuery UI 主题:

Polish, Le Frog

来源

Simply replace:

<script src="js/lib/grid.locale-en.js"></script>

with a language of your choice, like:

<script src="js/lib/grid.locale-pl.js"></script>

Standard (English) locale, Redmond theme:

English, Redmond

Polish locale, Le Frog jQuery UI theme:

Polish, Le Frog

Source

九命猫 2024-12-08 04:46:57

我在 帖子。例如,请参阅演示。你可以按照我的建议自己做出改变。只需要修改“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

enter image description here

to

enter image description here

for example.

P.S. Another old suggestion to use jQuery Globalization plugin could be also interesting for you.

零度℉ 2024-12-08 04:46:57

如果您使用的是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',
...
});

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