Ask a Question related to Macromedia Flex General Discussion, Design and Development.
-
isml #1
Can I let an editable tree get into editing stateautomatically?(In Flex 1.5)
I have an editable tree, so when i click on the node of tree , it gets into editing state. Now i want control it in code, Is there a method like "StartEdit()" ? Thanks a lot.
isml Guest
-
tree loading swf (Bug in flex 3)
Hi all, Is it possible to get a tree to load a swf (app) without getting the 1034 Type coercion error? Peter D has an example on his site that... -
How can i restrict the depth of Tree to 10 in Flex 1.5?
I should build a tree that should not exceed 10 Levels. How can i judge the current selectedNode's depth in the whole tree? thanks in advance -
ANY FLEX TREE GURUS?
Happy New years to All, Does anyone know how to Modify the Flex2 Tree component to display connector lines -- Like the one shown under "Rich... -
Flex Tree data sorting
Did anybody try to sort data in flex tree in alphabetical order??? HOw to do it? I have just a number of groups (root nodes) and a number if... -
Flex Tree - Editable Constraints
How do i make certain nodes Uneditable through the xml markup? <mx:XML id="myxml"> <customer label='John'> <address label='Address'> <street... -
ntsiii #2
Re: Can I let an editable tree get into editing stateautomatically?(In Flex 1.5)
You might try calling setFocus(), that might put the cell in edit mode for you.
Tracy
ntsiii Guest
-
isml #3
Re: Can I let an editable tree get into editing stateautomatically?(In Flex 1.5)
Thanks for your help
isml Guest
-
isml #4
Re: Can I let an editable tree get into editing stateautomatically?(In Flex 1.5)
mm.., I am sorry that i do not know how to use "SetFocus()" method.
But i find that "focusedCell" Property can also solve the problem
isml Guest
-
Unregistered #5
Re: Can I let an editable tree get into editing stateautomatically?(In Flex 1.5)
You have to first make the tree editable by the following statment
myTree.editable = true;
The following statement would automatically give focus to the node selected, if you have a node selected
myTree.editedItemPosition = {columnIndex:0, rowIndex:myTree.selectedIndex};Unregistered Guest



Reply With Quote

