-1

我在处理 JqGrid 时遇到了一些问题,这里是我的情况:

  1. 我试图设置multiselect:true.

  2. 我试图设置一些行复选框,使用loadComplete事件句柄用复选标记禁用。

  3. 如果我从列表中选择所有复选框,我如何才能启用复选框行 ID?

4

1 回答 1

0

我假设您已将 jqgrid 对象定义为网格

grid.jqGrid(

beforeSelectRow: function(rowid, e) {

    var disabledCheckboxes = $("tr#"+rowid+".jqgrow > td > input.cbox:disabled", grid[0]);

    if (disabledCheckboxes.length === 0) {

        return true;    // allow select the row

    } else {

        return false;   // not allow select the row

    }

},

onSelectAll: function(aRowids,status) {

    if (status) {

        var Checkboxes = $("tr.jqgrow > td > input.cbox:disabled", grid[0]);

        Checkboxes.removeAttr("checked");

          grid[0].p.selarrrow = grid.find("tr.jqgrow:has(td > input.cbox:checked)")

            .map(function() { return this.id; }) // fatch ids

            .get(); // convert to instance of Array

    }

});
于 2013-03-03T07:09:00.880 回答