[flexcoders] Re: Gui component events inside mx:Repeater

2006-05-09 Thread Doug Lowder
Try: change=timeRange.STARTTIME=event.target.selectedItem.data --- In flexcoders@yahoogroups.com, djbrown_rotonews [EMAIL PROTECTED] wrote: In the snippet I've included below, {hours.hour} is just a reference to some static XML that contains 24 strings (one for each hour), with the

[flexcoders] Re: Gui component events inside mx:Repeater

2006-05-08 Thread Tim Hoff
Each control (Repeater, comboBox) needs to utilyze binding. If you use an arrayCollection as the dataProvider for all your controls, you can easily manipulate and bind the data that resides in the model (preferably modelLocator). TH --- In flexcoders@yahoogroups.com, djbrown_rotonews

[flexcoders] Re: Gui component events inside mx:Repeater

2006-05-08 Thread Tim Hoff
You might also wan't to check this out: http://www.cflex.net/showfiledetails.cfm?ChannelID=1Object=FileobjectID=231 Cheers, Tim --- In flexcoders@yahoogroups.com, "djbrown_rotonews" [EMAIL PROTECTED] wrote: I've got the following GUI component that updates a value inside an mx:Model I've

[flexcoders] Re: Gui component events inside mx:Repeater

2006-05-08 Thread djbrown_rotonews
In the snippet I've included below, {hours.hour} is just a reference to some static XML that contains 24 strings (one for each hour), with the value I want associated with each (ie, 23:00 etc...) timeRange is a model that contains the current endTime (another ComboBox, in the same nature as