我有一个jqgrid,我会在navgrid中添加带有特定按钮的个人功能。
我可以做吗?怎么样?

    jQuery("#tabGrid").jqGrid({
    .....
    }).navGrid('#pagerPrivati',
{}, //options
{
}, // edit options
{
}, // add options
{
}, // del options
{
} // search options
);


非常感谢。

最佳答案

首先,您可以跳过{}的最后一个空的navGrid参数。因此,您只需将上面的代码重写为以下内容

jQuery("#tabGrid").jqGrid({
.....
}).navGrid('#pagerPrivati');


给你的主要问题。您可以使用navButtonAdd将自定义按钮添加到网格中。
the documentation中的示例似乎很清楚。我今天写的example中的另一个the answer可能对您也有帮助。

通常使用以下形式的buttonicon参数值:buttonicon: "ui-icon-calculator"其中"ui-icon-calculator"是定义图标的CSS类的名称。大多数情况下,使用jQuery UI类,例如here

09-25 19:22