假设网格有10行,我想让单元格(第2列字段的第9行)可编辑,你能给予我一些解决办法吗?
这是我的网格
var grid = new dojox.grid.EnhancedGrid({
store: store,
autoWidth: true,
structure: [
{ name: "Number", field: "col1", width: "84px", editable: false},
{ name: "Description", field: "col2", width: "84px", editable: false },
{ name: "Stock", field: "col3", width: "84px", editable: false }
]
}, "grid");
1条答案
按热度按时间tf7tbtn21#
尝试使用如下的canEdit函数。2下面的例子展示了如何不使第一个单元格不可编辑。