0

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

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

4

1 回答 1

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 }
            }
于 2013-08-05T10:45:54.133 回答