JqG​​rid复选框字段实现失败

时间:2013-08-05 09:56:59

标签: javascript jquery jqgrid

使用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} }

但我似乎无法弄清楚我做错了什么不能得到警报()。代码有什么问题?

1 个答案:

答案 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 }
            }