1

我正在使用Jqgrid并处于编辑模式我正在选择框中JQgrid类似Onchange事件的元素中使用函数

代码是这样的

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

我想在组合框的情况下添加myfunction()。Onchangetipo_norma

4

1 回答 1

5

在editoptions中使用dataEvent

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

]}
于 2013-02-09T11:05:31.920 回答