我正在使用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
}。
答案 0 :(得分:4)
editoptions: { dataEvents: [
{ type: 'change', fn: function(e) {myfunction(); } },
]}