本文介绍了jqGrid国际化的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我为我的HTML文件使用jqGrid网格表插件。我如何国际化我的表的列,标题等?我的意思是我将加载一个属性文件或更改一个变量,我的表格模板将使用该语言吗?
解决方案
< script src =js / lib / grid.locale-en.js>< / script>
以您选择的语言显示,如:
< script src =js / lib / grid.locale-pl.js>< / script>
标准(英文)区域设置,Redmond主题:
波兰语区域, Le Frog jQuery UI主题:
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?
解决方案
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:
Polish locale, Le Frog jQuery UI theme:
这篇关于jqGrid国际化的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!