我在ExtJS中看到了示例,但checkColumn似乎没有更新XML。该API也不是那么有用。我想做的就是这样。当用户单击网格中的复选框时,它将发送AJAX请求。

最佳答案

columns: [{
        xtype: 'checkcolumn',
        width: 30,
        sortable: false,
        id: 'check1',
        dataIndex: 'check11',
        editor: {
            xtype: 'checkbox',
            cls: 'x-grid-checkheader-editor'
        },
        listeners: {
            checkchange: function (column, recordIndex, checked) {
                alert(checked);
                alert("hi");
            }
        }
    }
]


为我工作:)

09-25 11:10