`styleUI`,`iconSet`,`width`和`direction`的jqGrid自由集默认值

时间:2016-11-11 11:56:14

标签: javascript jquery jqgrid free-jqgrid

我们正在使用jqGrid免费4.13.5 ...

是否可以设置默认iconSetwidthdirection $.jgrid.defaults.styleUI = "bootstrap" $.jgrid.styleUI = "bootstrap" ?!

我尝试过类似的事情:

select

我已查看http://free-jqgrid.github.io/api-documentation/index.html网格,但未找到任何答案!

1 个答案:

答案 0 :(得分:2)

我不确定您使用styleUI财产的原因。应使用guiStyle: "bootstrap"guiStyle: "bootstrapPrimary"选项指定Bootstrap GUI样式(请参阅here)。

可以通过设置$.jgrid.defaults的相应属性来更改任何参数。因此你可以使用

$.jgrid.defaults.guiStyle = "bootstrap";

$.jgrid.defaults.guiStyle = "bootstrap";
$.jgrid.defaults.iconSet = "fontAwesome";

将选项guiStyle: "jQueryUI"iconSet: "jQueryUI"(或iconSet: "glyph")的默认值更改为guiStyle: "bootstrap", iconSet: "fontAwesome"

以同样的方式设置jqGrid的任何其他参数的默认值。例如$.jgrid.defaults.direction = "rtl";。顺便说一句,默认direction将根据您使用的语言环境进行设置。