В Ext.tree.Panel
, чтобы редактировать записи, мне нужно добавить xtype: 'treecolumn'
.
Можно ли скрыть это поле, чтобы оно не отображалось над деревом, но в то же времяредактирование записей остается.Ниже код моего дерева:
Ext.define('Survey.view.QuestionTree', {
extend: 'Ext.tree.Panel',
alias: 'widget.questiontree',
xtype: 'questiontree',
store: 'QuestionTreeStore',
rootVisible: true,
columns: [{
xtype: 'treecolumn',
text: 'text',
flex: 1,
sortable: true,
dataIndex: 'text',
editor: {
xtype: 'textfield',
allowBlank: true
}
}
],
plugins: [{
ptype: 'rowediting',
clicksToMoveEditor: 1,
autoCancel: false,
listeners: {
afteredit : function (editor, context, eOpts ){
context.store.reload();
},
canceledit : function ( editor, context, eOpts ){
context.store.reload();
}
}
}],
....
Спасибо