更改 jqGrid 中的语言
我想更改用 jqGrid 构建的网格的语言。 对于列名称,我使用服务器端本地化,如下所示:
mtype: 'POST',
colNames:['', '$l10n.col1', '$l10n.col2', '$l10n.col3','$l10n.col4', '$l10n.col5','$l10n.col6','$l10n.col7 $l10n.col8','$l10n.col9','$l10n.col10']
此代码由 Velocity
模板引擎解析,该引擎知道如何处理我的 $l10n
本地化工具。但是有 jqGrid 特定文本(例如“正在加载...”标签或“页面”标签等)我已经看到这些标签位于 grid.locale-xx.js
文件中。
当我更改应用程序的语言时,我想使用 grid.locale-en.js
中的标签而不是 grid.locale-de.js
中的标签。我在哪里可以告诉 jqGrid 使用哪个本地化文件?
I would like to change the language of my grid that I constructed with jqGrid.
For column names I use server side localization like this:
mtype: 'POST',
colNames:['', '$l10n.col1', '$l10n.col2', '$l10n.col3','$l10n.col4', '$l10n.col5','$l10n.col6','$l10n.col7 $l10n.col8','$l10n.col9','$l10n.col10']
This code is parsed by the Velocity
template engine which knows how to handle my $l10n
localization tool. But there are jqGrid specific texts (like to Loading... label or the Page label etc.) I have seen these labels are in the grid.locale-xx.js
files.
I want to use the labels from grid.locale-en.js
instead of the labels from grid.locale-de.js
when I change my application's language. Where can I tell jqGrid which localization file to use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Oleg 有一个示例此处 这应该正是您所需要的。
Oleg has an example here which should be exactly what you need.