我已经看到了大量关于在视图中设置 colmodel 的示例,但我无法看到控制器代码!我正在尝试这样做,但设置一直出错。我试图达到这个列的形成:
colModel:
[
{ name: 'ID', index: 'ID', hidden: true },
{ name: 'Votes', index: 'Votes', width: 100, align: 'left' },
{ name: 'Question', index: 'Question', width: 300, align: 'left' },
{ name: 'my_clickable_checkbox', index: 'my_clickable_checkbox',
sortable: true,
formatter: chkFmatter, formatoptions: { disabled: false }, editable: true,
edittype: "checkbox"
}
],
这是我在控制器中的试验:
return Json(
new { colNames = new[] { "ID2", "Votes2", "Question2", "checkbox" },
colModel = new[] {
new { name = "ID", index = "ID", width = 0, formatter="",
edittype="", hidden = true },
new { name = "Votes", index = "Votes", width = 100, formatter="",
edittype="", hidden = false },
new { name = "Question", index = "Question", width = 300, formatter="",
edittype="", hidden = false },
new { name = "checkbox", index = "my_clickable_checkbox", width = 100,
formatter="chkFmatter", edittype="checkbox", hidden = false }
}
}, JsonRequestBehavior.AllowGet);
在控制器中创建这个数组迫使我在所有行中拥有相同数量的属性。例如,我只需要ID
隐藏 ,但它迫使我向hidden
所有其他列提供属性。
第二个问题,我需要chkFmatter
为第四列调用js函数。
我怎样才能在控制器中达到 colModel 形成?
非常感谢。