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

w2ui - Inline edit grid with list. under grid i need to call onselect for each dropdown

我正在使用 w2ui 网格在线编辑列表和许多其他东西。

如何监听元素的 onselect 事件?

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

按以下方式尝试并访问 link 了解详细信息。

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

您也可以在创建网格时添加它。

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

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