Dojo 增强网格:如何使特定单元格可编辑而不是整个列



假设网格有 10 行,我想使单元格(col2 字段的第 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");

尝试使用canEdit函数,如下所示。下面的示例演示如何不使第一个单元格不可编辑。

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 }
],
canEdit: function (inCell, inRowIndex) {
if (inRowIndex && inCell.index === 0) {
return false;
}
return this._canEdit;
}
}, "grid");

相关内容

  • 没有找到相关文章

最新更新