我有一个jqgrid,我会在navgrid中添加一个带有特定按钮的个人功能。 我可以做吗?怎么样?
jQuery("#tabGrid").jqGrid({
.....
}).navGrid('#pagerPrivati',
{}, //options
{
}, // edit options
{
}, // add options
{
}, // del options
{
} // search options
);
非常感谢你。
答案 0 :(得分:1)
首先,您可以跳过{}
的最后一个空navGrid
个参数。因此,您只需将上面的代码重写为以下
jQuery("#tabGrid").jqGrid({
.....
}).navGrid('#pagerPrivati');
给你主要问题。您可以使用navButtonAdd将自定义按钮添加到网格中。 来自the documentation的例子似乎很清楚。我今天写的另外example the answer可能对你有帮助。
通常使用buttonicon
形式的buttonicon: "ui-icon-calculator"
参数的值:"ui-icon-calculator"
其中{{1}}是定义图标的CSS类的名称。大多数人使用jQuery UI类,例如here。