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.
各行が編集可能かどうかを切り替えるチェック ボックスの列を持つグリッドを作成しようとしています。現時点では、複数の行を編集可能にする方法はまだ見つかっていません。hereで説明されているように、選択に CheckboxModel を使用するというアイデアは気に入っていますが、編集部分を機能させることができず、行全体を編集したいと考えています。
その例との唯一の違いは、エディターの種類です。交換
var editor = Ext.create('Ext.grid.plugin.CellEditing', { clicksToEdit: 2 });
と
var editor = Ext.create('Ext.grid.plugin.RowEditing', { clicksToEdit: 2 });