使用JqGrid,我只是尝试实现一个复选框字段,每次用户检查/取消选中时,都会使用ajax请求更新数据库数据。这是我失败的尝试:
{name:'fastpass',index:'fastpass',width:20,editable:true, edittype:'checkbox', editoptions:{
value:"True:False",
dataEvents:[{
type:'click',fn:function(e){
alert();
}
}]
}, formatter:"checkbox", formatoptions:{disabled:false} }
但我似乎无法弄清楚我做错了什么不能得到警报()。代码有什么问题?
答案 0 :(得分:0)
试试这个
{ name: 'fastpass',
index: 'fastpass',
width: 20,
editable: true,
edittype: 'checkbox',
editoptions: {
value: "True:False",
dataEvents: [{
type: 'click', fn: function (e) {
alert();
}
}],
formatter: "checkbox",
},
formatoptions: { disabled: false }
}