0

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

1 回答 1

0

(由 OP 在问题编辑中回答。转换为社区 wiki 答案。请参阅没有答案的问题,但问题在评论中解决(或在聊天中扩展)

OP写道:

最后我解决了这个问题:

Checkbox injqgrid只识别一些属性false,0,No,undefined和更多。我只需要将我的结果映射到这些结果。在这种情况下:'S' --> 1'N' --> 0。有了这个映射,问题就解决了:)

于 2015-01-30T11:42:07.263 回答