我正在使用 jqgrid,但复选框有问题。
我的数据库中有一个列返回'S' --> true
和'N'--> false
。
我在网上看过一些例子,我选择了这种方式(认为这是正确的):
{name:'acc_web', index:'acc_web', width:60, editable:true, edittype:"checkbox", formatter:"checkbox",editoptions: {value:"S:N"}},
但是,这始终检查为true
复选框。这里有什么问题吗?此外,我把它作为editable
,但我不能!
整个代码是这样的:
$(document).ready(function () {
jQuery("#list2").jqGrid({
url:'obtieneUsuarios.do',
datatype: "json",
colNames:['Acceso web','Primer apellido','Segundo apellido','Nombre','Login', 'Perfil'],
colModel:[
{name:'acc_web', index:'acc_web', width:60, editable:true, edittype:"checkbox", formatter:"checkbox",editoptions: {value:"S:N"}},
{name:'apellido1',index:'apellido1', width:200},
{name:'apellido2',index:'apellido2', width:200},
{name:'nombre',index:'nombre', width:160},
{name:'login',index:'login', width:100},
{name:'perfil',index:'perfil', width:160}
],
width: 820,
height: 200,
rowNum:10,
rowList:[5,10,20],
pager: '#pager2',
sortname: 'apellido1',
viewrecords: true,
sortorder: "asc",
caption:"Listado de usuarios"
});
jQuery("#list2").jqGrid('navGrid','#pager2',{edit:false,add:false,del:false});
});