我正在使用Jqgrid,并且在编辑模式下正在使用
JQgrid元素中的功能,例如选择框中的Onchange事件

代码是这样的

{name:'tipo_norma',index:'tipo_norma', editable:true,
width:'90',align:'center',edittype:'select',editoptions:
{dataUrl:'../ajax/selectNorma.php' }}


我想在myfunction(组合框的Onchange事件中添加tipo_norma)。

最佳答案

editoptions中使用dataEvent

    editoptions: { dataEvents: [
{ type: 'change', fn: function(e) {myfunction(); } },

]}

07-26 08:08