实战之Grid, Tree Gird编辑Cell
本篇这里以稍微复杂一点的Tree Grid 来介绍.
在写编辑grid 之, 先来看一下 grid 的 selType 的配置。
先给一个简单的Tree grid 的例子:
{ ... dataIndex: 'status', xtype: 'componentcolumn', renderer: function(status) { return { ... store: ['Available', 'Away', 'Busy', 'Offline'], value: status, xtype: 'combobox' }; } }