Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试创建一个带有一列复选框的网格,这些复选框可以切换每一行是否可编辑。到目前为止,我还没有找到一种方法可以通过任何方式使多行可编辑。我喜欢使用 CheckboxModel 进行选择的想法,如此处所述,但我无法让编辑部分工作,我想编辑整行。
与该示例的唯一区别是编辑器类型。代替
var editor = Ext.create('Ext.grid.plugin.CellEditing', { clicksToEdit: 2 });
和
var editor = Ext.create('Ext.grid.plugin.RowEditing', { clicksToEdit: 2 });