作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在 jqgrid 列中创建复选框并使用以下代码
{
name: 'CanDo', width: 50, index: 'CanDo',
edittype: 'checkbox', editoptions: { value: "True:False" },
formatter: "checkbox", formatoptions: { disabled: true}
}
$("#pGrid").jqGrid({
datastr: '@Html.Raw(@Model.PList)',
datatype: 'jsonstring',
colNames: ['id','CanDo' ,'Name'],
colModel: [
{ name: 'id', hidden: true },
{ name: 'CanDo', width: 50, index: 'CanDo',editable: true, edittype: 'checkbox', editoptions: { value: "True:False" }, formatter: "checkbox", formatoptions: { disabled: true},
{ name: 'Name', width: 150 }
],
pager: '#pager',
rowNum: 100,
height: "200",
viewrecords: true,
caption: '<span class="spanH2">Test Process</span>'
});
{"total":1,"page":1,"records":2,
"rows": [
{"id":"1","cell":["1","True","Callback"]},
{"id":"8","cell":["8","False","Complaint"]}]}
最佳答案
我相信你错过了 editable:true
选项。尝试这个:
{
name: 'CanDo', width: 50, index: 'CanDo',
editable: true,
edittype: 'checkbox', editoptions: { value: "True:False" },
formatter: "checkbox", formatoptions: { disabled: true}
}
关于jqgrid - 在 jqGrid 中创建复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12915263/
我是一名优秀的程序员,十分优秀!