RE: [flexcoders] Re: Item Renderer Not Updating

2007-11-14 Thread Alex Harui
: [flexcoders] Re: Item Renderer Not Updating I went and created a component as the itemRenderer, like this: mx:Canvas xmlns:mx=http://www.adobe.com/2006/mxml http://www.adobe.com/2006/mxml width=100% height=20 mx:CheckBox id=myCheckBox selectedField=selected label={data.label} x=0 y=0

RE: [flexcoders] Re: Item Renderer Not Updating

2007-11-14 Thread Alex Harui
Oh, maybe you need to set selectedField=selected From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Geoffrey Sent: Wednesday, November 14, 2007 8:37 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Item Renderer Not Updating

RE: [flexcoders] Re: Item Renderer Not Updating

2007-11-14 Thread Alex Harui
: [flexcoders] Re: Item Renderer Not Updating I need to correct my previous post with some changes I've made. I changed the model property to 'isSelected', and am binding that to the 'selected' property of the CheckBox like so: mx:CheckBox id=myCheckBox selected={data.isSelected} label={data.label

RE: [flexcoders] Re: Item Renderer Not Updating

2007-11-13 Thread Alex Harui
To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Item Renderer Not Updating I know there's got to be something simple that I'm overlooking, and I thought that I read something pertaining to this in the docs, but for the life of me I can't find it. Thanks for any suggestions, Geoff