我正在使用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(); } },
]}