Re: [flexcoders] Re: how to add cellRender CheckBox to Tree?

2005-08-10 Thread Paolo Bernardini
I'm trying to implement a tree with a checkbox renderer, but so far with no luck. I've tried the example at macromedia, http://www.macromedia.com/support/documentation/en/flex/1/cellrenderers/cellrenderers13.htmlbut it doesn't work properly. It behave in a strange way, basically as soon as

[flexcoders] Re: how to add cellRender CheckBox to Tree?

2005-06-29 Thread loveewind
This article is helpful for me, the article referred CheckRowRenderer.as but how to get all checked Node's label? thanks! --- In flexcoders@yahoogroups.com, Tom Jeffery [EMAIL PROTECTED] wrote: I just started looking at doing something similar. I believe you're going to want to extend

[flexcoders] Re: how to add cellRender CheckBox to Tree?

2005-06-29 Thread alex_harui
All nodes have a getParent() and getChildNodes() so you can walk up and down the tree of nodes --- In flexcoders@yahoogroups.com, loveewind [EMAIL PROTECTED] wrote: This article is helpful for me, the article referred CheckRowRenderer.as but how to get all checked Node's label? thanks!

[flexcoders] Re: how to add cellRender CheckBox to Tree?

2005-06-28 Thread Tom Jeffery
I just started looking at doing something similar. I believe you're going to want to extend TreeRow. There's an example online here: http://www.macromedia.com/support/documentation/en/flex/1/cellrenderers/cellrenderers13.html The example is not perfect, and I've been really struggling to

[flexcoders] Re: how to add cellRender CheckBox to Tree?

2005-06-28 Thread alex_harui
A Tree consists of TreeRows and cell renderers. The TreeRow places the open/close icon and the icon for the row and then its cellRenderer. If a Checkbox is the cell renderer then you'll get see the open/close then the folder/leaf icon then the checkbox then the checkbox label. Have you