RE: [flexcoders] ComboBox binding

2008-05-02 Thread Alex Harui
: [flexcoders] ComboBox binding ComboBox binding is driving me crazy. [Bindable] public var selectedGranularity:String; mx:ComboBox id=granularityCombo dataProvider={source} selectedIndex={findSelectedIndex(this.selectedGranularity)} labelFunction=labelFunction / If I set a breakpoint

Re: [flexcoders] ComboBox binding

2008-05-02 Thread Richard Rodseth
appropriate [Bindable] metadata? Or are you getting warnings? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Richard Rodseth Sent: Thursday, May 01, 2008 10:57 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] ComboBox

[flexcoders] ComboBox binding

2008-05-01 Thread Richard Rodseth
ComboBox binding is driving me crazy. [Bindable] public var selectedGranularity:String; mx:ComboBox id=granularityCombo dataProvider={source} selectedIndex={findSelectedIndex(this.selectedGranularity)} labelFunction=labelFunction / If I set a breakpoint on

[flexcoders] Combobox binding

2008-01-10 Thread markgoldin_2000
I am using Model to bind form's data to a combobox and trying to use same model to send modified data back. Here are some snippets: Form: mx:FormItem label=Divisions customComponents:comboItemRenderer labelField=name selectedIndex={modelGeneral.division}