0

网格单元格中的 Jqwidget 复选框始终被选中,即使它来自 Json 的值在 asp .net mvc3 项目中为假。(在数据库端,我使用了位,在服务器端,我在模型定义中使用了 bool 类型)

传入的 Json 结果网格

客户端的源部分是:

var source = {
            datatype: "json",
            datafields: [{ name: 'KargoId' }, { name: 'Ad' }, { name: 'Soyad' }, { name: 'Urun' }, { name: 'Uygunluk' },
                         { name: 'YuklenmeTarihi', type: 'date' }, { name: 'Adet' }, { name: 'Fiyat'}],
            url: 'BindEditGrid'
        };

复选框列的列定义是:

{ text: 'Uygun', datafield: 'Uygunluk', columntype: 'checkbox', width: 67 }
4

1 回答 1

0

布尔列的类型应在数据字段定义中设置为“布尔”。

于 2012-07-10T20:02:15.750 回答