是否可以在JQGrid中使用单元格编辑 - 树网格? 当我添加可编辑选项时,它无法正常工作
colModel: [
{ name: 'fieldName', index: 'id', width: 10, hidden:true},
{ name: 'level', index: 'level', width: 10, hidden:true},
{ name: 'field1', index: 'field2', width: 60, classes:'field2Section', align: 'right',
**editable:true**, formatter:'number',
formatoptions: { decimalSeparator: ".", thousandsSeparator: ",", decimalPlaces:
2,
defaultValue: '0.00' }
},
...
], //end of colModel
treeGrid: true,
treeGridModel: 'adjacency',
ExpandColumn : 'fieldName',
...
我的树状网格,单独工作正常。
在我的JSON对象中,我有名为" level"的字段。和" isLeaf"。根据我的规格设置..有些是真的有些是假的。
我想在点击它们时使reandom单元格可编辑。 jQgrid是否支持它?目前,我只想实现一个可编辑的单元格,然后我将处理在afterEdit ..事件上做什么。 有什么建议?
由于