Re: [flexcoders] Re: Flex 1.5 - n checkboxes

2005-11-08 Thread Richard Rodseth
Isn't there some way to trigger valueCommitted at *submit* time? I don't think the model should be updated when each checkbox is clicked, but I like the idea of connecting the control to the data source declaratively. - RichardOn 11/7/05, m_chotin [EMAIL PROTECTED] wrote: clicking on the

RE: [flexcoders] Re: Flex 1.5 - n checkboxes

2005-11-08 Thread Alon J Salant
[mailto:flexcoders@yahoogroups.com] On Behalf Of Richard Rodseth Sent: Wednesday, November 02, 2005 4:40 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Flex 1.5 - n checkboxes No, my requirements are simple. An Edit User panel with checkboxes for all the roles the user has. I have

RE: [flexcoders] Re: Flex 1.5 - n checkboxes

2005-11-08 Thread Matt Chotin
] Re: Flex 1.5 - n checkboxes Isn't there some way to trigger valueCommitted at *submit* time? I don't think the model should be updated when each checkbox is clicked, but I like the idea of connecting the control to the data source declaratively. - Richard On 11/7/05, m_chotin [EMAIL

Re: [flexcoders] Re: Flex 1.5 - n checkboxes

2005-11-08 Thread JesterXL
: Tuesday, November 08, 2005 2:14 PM Subject: RE: [flexcoders] Re: Flex 1.5 - n checkboxes A high level comment that may help you to put your problem and solution in a different light… In our work with Flex I have found using a repeater to be a “bad smell” worth looking in to. Usually

Re: [flexcoders] Re: Flex 1.5 - n checkboxes

2005-11-07 Thread Richard Rodseth
; / Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Richard Rodseth Sent: Wednesday, November 02, 2005 4:40 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Flex 1.5 - n checkboxes No, my requirements are simple. An Edit User panel wi

[flexcoders] Re: Flex 1.5 - n checkboxes

2005-11-07 Thread m_chotin
@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Richard Rodseth *Sent:* Wednesday, November 02, 2005 4:40 PM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] Re: Flex 1.5 - n checkboxes No, my requirements are simple. An Edit User panel with checkboxes for all the roles

Re: [flexcoders] Re: Flex 1.5 - n checkboxes

2005-11-03 Thread Richard Rodseth
No, my requirements are simple. An Edit User panel with checkboxes for all the roles the user has. I have the check boxes rendering as follows mx:Repeater id=rolesList dataProvider={allroles} mx:CheckBox id=role label={rolesList.currentItem}

RE: [flexcoders] Re: Flex 1.5 - n checkboxes

2005-11-03 Thread Matt Chotin
@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Richard Rodseth Sent: Wednesday, November 02, 2005 4:40 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Flex 1.5 - n checkboxes No, my requirements are simple. An Edit User panel with checkboxes for all the roles

[flexcoders] Re: Flex 1.5 - n checkboxes

2005-11-02 Thread Brendan Meutzner
Hi Richard, I recently completed a project in which we had to dynamically build form selection elements based on different control types (eg. checkboxes, radio buttons, etc...). The data model we worked with provided us with the string name of the control type to use, and the appropriate data