-
4 Apr 2012 7:25 AM #1
CellEditing plugin cannot be dropped on Tree
CellEditing plugin cannot be dropped on Tree
How can a user edit a treeview node during runtime? How do you do this using the Designer 2?
Thanks
Kevin
-
4 Apr 2012 7:56 AM #2
Looks like we have some work to do to make this easier.
You should be able to add a cell editing plugin and then configure the editor you'd like to use.Aaron Conran
@aconran
Sencha Architect Development Team
-
5 Apr 2012 6:53 AM #3
I think there maybe a bug here. I can not add/drop a "Cell Edditing Plugin" onto my tree or anywhere on my form. Is this a bug?
Kevin
-
5 Apr 2012 8:42 AM #4
Yes it is a bug.
Aaron Conran
@aconran
Sencha Architect Development Team
-
23 Jul 2012 6:20 AM #5
Is there a known workaround for this Bug?
Thanks
Carine
-
12 Oct 2012 6:36 AM #6
Sencha Architect / Cellediting plugin
Sencha Architect / Cellediting plugin
Hi,
I have the same problem. Is there a known solution ?
Thanks
-
16 Oct 2012 5:33 AM #7
Tree cellediting plugin / override in Sencharchitect 2.0
Tree cellediting plugin / override in Sencharchitect 2.0
I finally promoted MyTreeGrid to class and created an override. It seems to work so far.
Code:Ext.define('MyView.view.override.MyTreeGrid', { override: 'MyView.view.MyTreeGrid', initComponent: function() { Ext.applyIf(this, { plugins: [ Ext.create('Ext.grid.plugin.CellEditing', { ptype: 'cellediting', triggerEvent: 'celldblclick', listeners: { edit: { fn: this.onGridcelleditingpluginEdit, scope: this } } }) ] }); this.callParent(arguments); }, onGridcelleditingpluginEdit: function(editor, e, options) { } });
-
29 Nov 2012 7:08 AM #8
Hi,
I'm new to the forum. The fix for this issue is not in current downloadable build (Version 2.1.0 Build 676).
Is there somewhere to download this fix as a patch?
-
29 Nov 2012 7:31 AM #9
It's coming in the next release.
Aaron Conran
@aconran
Sencha Architect Development Team
-
4 Mar 2013 6:30 AM #10
Success! Looks like we've fixed this one. According to our records the fix was applied for
DSGNR-1689
in
Sprint 32.


Reply With Quote