hide the triangle in the tree

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

  1. #1

    Default hide the triangle in the tree

    Hi, there
    In the tree control, triangle icon appears in front of the parent node.
    Does anyone know how to hide this triangle?
    Thanks
    David

    tansht@gmail.com Guest

  2. Similar Questions and Discussions

    1. hide tree
      I have an app using a hdividebox with two panels the left a tree and the right an app. I would like the tree to disappear and have the app in the...
    2. popup menus won't hide - PVII show/hide layers behaviour
      I've used the 'Auto show/hide by PVII" behaviour to create some popup menus for the navigation which make use of divs which appear and disappear....
    3. Triangle
      Hello all, I've just opened Freehand MX and am having difficulty drawing a triangle. I am more accustomed to Flash's method where you simply...
    4. Making a triangle that wll fill?
      "Craig W" <craig@happy100.freeserve.co.uk> wrote in message news:bj47s2$l1$1@forums.macromedia.com... Polygon Tool Shape: Polygon Sides: 3 ...
  3. #2

    Default hide the triangle in the tree

    Hi, there
    In the tree control, triangle icon appears in front of the parent node.
    Does anyone know how to hide this triangle?
    Thanks
    David

    personaex Guest

  4. #3

    Default Re: hide the triangle in the tree

    Would it work for you to set the isBranch property to false? I believe that would prevent the display of the triangle.

    Tracy
    ntsiii Guest

  5. #4

    Default Re: hide the triangle in the tree

    Hi, Tracy
    Thanks for your reply. However, it doesn't work. isBranch property determines
    whether the node is parent or child. Set it true makes the corresponding node
    as parent node without any child. Set it false makes it a child node. So it has
    nothing to do with the triangle. I created a parent node with 2 children. And
    it makes no difference whatever I set the property (true or false). The
    triangle always appears. Do you have any other ideas?
    David

    personaex Guest

  6. #5

    Default Re: hide the triangle in the tree

    I have done a cell renderer and it does not include the disclosure arrow, so maybe you will need to look into a custom row renderer. I have not done one of those so I won't be much help.

    Tracy
    ntsiii Guest

  7. #6

    Default Re: hide the triangle in the tree

    tree.setStyle("disclosureOpenIcon", null);
    tree.setStyle("disclosureClosedIcon", null);
    g_w_master 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