-
8 Jun 2009 5:04 AM #71
Hi, Thx for your component,
I've just a little problem due to (I think) the fact, that is it a asynctree.
When i check a node and if the children nodes are'nt expanded, the children will be not check.
Do you have any idea to automatically check the children of a unexpended parent ?
Thx,
Antoine
-
11 Jun 2009 8:57 AM #72
Have others been able to use "rootVisible: false" to hide the root node? The root node is still visible for me but it's now laid out without any indentation for the child nodes - root and child nodes look like they are part of the same level in the tree.
Help please.
-
12 Jul 2009 10:52 AM #73
unable to get checkboxes showing..using ffox 3.5
-
12 Jul 2009 11:13 PM #74
-
16 Jul 2009 6:10 PM #75
Nice work man! works great!
I am trying to tirgger the load spinner to come up in beside the node because I do the node checked state save on each check. so bascially I am looking to show the user that soemthign is going on when they check or uncheck...
-
16 Jul 2009 10:54 PM #76
-
13 Aug 2009 4:56 AM #77
Thank you for extension!
I've noticed some strange behaviour using AsynchTreeNode.
Having tree structure like that:
Tree nodes are properly (I believe) configured with AsynchTriStateNodeUI. When I check Node 1.2, Node 1.2.1 and Node 1.2.2 are checked as well. Then if I uncheck Node 1.2.1, Node 1.2 and 1.2.2 get unchecked, but 1.2.1 still shown as checked (like it wasn't internally "checked" on checking its parent).Code:[ ] Node 1 [ ] Node 1.2 [ ] Node 1.2.1 [ ] Node 1.2.2 [ ] Node 1.2
Adding call to a parent method in AsynchTriStateNodeUI.updateChild() fixes the problem:
Am I correct or just missing something?Code:updateChild:function(checked){ if(this.checkbox){ if(checked === true){ Ext.fly(this.ctNode).replaceClass('x-tree-branch-unchecked', 'x-tree-branch-checked'); } else if(checked === false){ Ext.fly(this.ctNode).replaceClass('x-tree-branch-checked', 'x-tree-branch-unchecked'); } else { Ext.fly(this.ctNode).removeClass(['x-tree-branch-checked', 'x-tree-branch-unchecked']); } } Ext.tree.AsynchTriStateNodeUI.superclass.updateChild.apply(this, arguments); },
-
6 Sep 2009 10:47 PM #78
Ext 3.0 Compatible
Ext 3.0 Compatible
@Condor - This looks great. Is it compatible with Ext 3.0?
-
6 Sep 2009 10:51 PM #79
-
10 Sep 2009 5:26 PM #80
how can I set the item's check state by script
how can I set the item's check state by script
how can I set the item's check state by script?
I mean there's two trees,the second tree contains options that cat set the first tree's check state.


Reply With Quote

