Can I let an editable tree get into editing stateautomatically?(In Flex 1.5)

Ask a Question related to Macromedia Flex General Discussion, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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
    3. 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...
    4. 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...
    5. 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...
  3. #2

    Default 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

  4. #3

    Default Re: Can I let an editable tree get into editing stateautomatically?(In Flex 1.5)

    Thanks for your help
    isml Guest

  5. #4

    Default 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

  6. #5

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139