w2ui - 带列表的内联编辑网格。在网格下我需要为每个下拉列表调用onselect

时间:2015-12-09 09:30:22

标签: jquery grid dropdown w2ui

我正在使用w2ui网格内联编辑列表和许多其他内容。

如何收听元素的 onselect 事件?

$('#grid').w2grid({
     name: 'grid',
     columns: [
        {
             field: 'fieldname',caption: 'caption',sortable: true,
             editable: {
                 type: 'list',
                 items: people,
                 showAll: true 
                }           
             }
     ],....    

1 个答案:

答案 0 :(得分:0)

请尝试以下操作并访问该链接以获取详细信息。

w2ui.grid.on('change', function(event) {
    console.log(event);
});

OR

您也可以在网格创建过程中添加它。

$('#grid').w2grid({
    name    : 'grid',
    // . . . . . . . 
    onChange: function(event) {
        console.log(event);
    }        
});

http://w2ui.com/web/docs/w2grid.onChange