jqGrid 3.6.2发布——终于提供简体中文包了

早上无意中发现,jqGrid发布了3.6.2版本。查看了一下chang log,居然让我看到了中文包的发布。

前几天正为这事儿头痛,要不要根据grid.local-en.js来汉化一下,没想到居然直接就出中文包了。官方的一般来说比自己做的要好吧。

下载地址:http://www.trirand.com/blog/?page_id=6

下载之后修改自己写的jsp文件中的引用语句

<script src="../js/i18n/grid.locale-en.js" type="text/javascript"></script>

修改为

<script src="../js/i18n/grid.locale-cn.js" type="text/javascript"></script>

再打开运行tomcat来看,果然变成中文的了。哈哈!爽!

不过有一点需要注意,如果你是狂热爱好者,在jsp中直接引用src目录下的原始包(这样可以调试jqGrid的源代码),那么除了上面我们说的jsp文件中需要修改之外,还有一个js文件需要修改,那就是:src/grid.loader.js中

    var modules = [
        { include: true, incfile:'i18n/grid.locale-en.js'}, // jqGrid translation

需要修改为

    var modules = [
        { include: true, incfile:'i18n/grid.locale-cn.js'}, // jqGrid translation

这样就好了!

你可能感兴趣的:(jqGrid 3.6.2发布——终于提供简体中文包了)