[flexcoders] Combobox / DropDownList

2012-04-04 Thread hawkcode2
Hi, I have a mobile app and I'm using the mx combobox. Adobe doesn't recomend this for mobile apps. I tried the spark combo and dropdown, both of which do not work well in a mobile app. Looked horible and didn't respond to touches. But Abobe also says "Adobe discourages using ComboBox when targ

Rv: RV: [flexcoders] combobox problem

2012-02-01 Thread ANIBAL Benalcazar
- Mensaje reenviado - De: ANIBAL Benalcazar Para: "flexcoders@yahoogroups.com" Enviado: Miércoles 5 de octubre de 2011 10:50 Asunto: Re: RV: [flexcoders] combobox problem   please help with generate pdf structured who contract from forms and datagrid

Re: RV: [flexcoders] combobox problem

2011-10-07 Thread ANIBAL Benalcazar
please help with generate pdf structured who contract from forms and datagrid

Re: RV: [flexcoders] combobox problem

2011-10-05 Thread Alex Harui
de octubre de 2011 7:30 a.m. Para: flexcoders@yahoogroups.com Asunto: Re: [flexcoders] combobox problem In your function: public function BuscarParametroId(parametroId:int = 0):void How do you know that the keyword this refers to the combobox? Could you try exchanging the word this to an

[flexcoders] ComboBox fiasco

2010-08-03 Thread Richard Rodseth
Back in ComboBox hell, and finally read this: https://bugs.adobe.com/jira/browse/SDK-25705 I've always had problems with comboboxes and binding, but didn't realize this particular bug was *introduced* in 3.5, rather than having been there all along. Of course I updated our application to use 3.5

[flexcoders] Combobox as itemEditor

2010-06-13 Thread jonbehr
I have a combobox as an itemEditor in a datagrid. I have an event listener on the datagrid (DataGridEvent.ITEM_EDIT_END) that calculates the values in adjacent datagrid cells based on the value that has been selected in the combobox. This all works fine. The one area that I am struggling with h

Re: [flexcoders] Combobox in ItemEditor

2010-06-03 Thread Alex Harui
One way is to set an id=”foo” on the ComboBox, then use object.data = ComboBox(Grid(event.currentTarget.itemEditorInstance).foo).text; On 6/2/10 1:00 PM, "Goutham" wrote: Hi, I have a combobox in item editor in a datagrid. the combobox is populated with a dataprovider. All this works fin

[flexcoders] Combobox in ItemEditor

2010-06-03 Thread Goutham
Hi, I have a combobox in item editor in a datagrid. the combobox is populated with a dataprovider. All this works fine until I place this combobox inside a gird working code mxml code - actionscript code - object.data = ComboBox(event.cur

Re: [flexcoders] Combobox editor problem

2010-04-07 Thread Bala_V
Thank you so much Jayant, it worked fine. Jayant-4 wrote: > > Looks like you just need to make the combobox opaque. Set fillAlphas="[1, > 1]" for Combo in checkBoxEditor.mxml. > > -Jayant > > On Sun, Apr 4, 2010 at 3:30 AM, Bala_V wrote: > >> >> >> >> Hi. >> >> Iam using a combo box as item

Re: [flexcoders] combobox, sdk 3.5 bug, any workarounds?

2010-04-06 Thread Tom Chiverton
On Monday 05 Apr 2010, ArunKumar Madas wrote: > Thanks Peeyush. That helps. > We have referred everywhere across our code and changing > all the instances is a bigger change. That's when Monkey Patching is useful. -- Helping to appropriately maintain design-patterns as part of the IT team of

Re: [flexcoders] combobox, sdk 3.5 bug, any workarounds?

2010-04-05 Thread ArunKumar Madas
Thanks Peeyush. That helps. We have referred everywhere across our code and changing all the instances is a bigger change. I guess, for this very reason creating a an extended base components one time and using with custom namespace across the app is a good idea. We just turned back to 3.4 (as we

Re: [flexcoders] Combobox editor problem

2010-04-05 Thread Jayant C R
Looks like you just need to make the combobox opaque. Set fillAlphas="[1, 1]" for Combo in checkBoxEditor.mxml. -Jayant On Sun, Apr 4, 2010 at 3:30 AM, Bala_V wrote: > > > > Hi. > > Iam using a combo box as item editor and am rendering it dynamically using > action script. My requirement is sim

Re: [flexcoders] combobox, sdk 3.5 bug, any workarounds?

2010-04-04 Thread Peeyush Tuli
Override the combobox class in a custom component and add the following code - private var mDropDown:ListBase; override public function set dataProvider(value:Object):void { super.dataProvider = value; //Bug in Flex SDK 3.5: Once the data provider is set and list base is created //chan

[flexcoders] Combobox editor problem

2010-04-04 Thread Bala_V
Hi. Iam using a combo box as item editor and am rendering it dynamically using action script. My requirement is simple. a.) I have 3 values, Y, N and TBD. The default is TBD. b.) When I click on the drop down, the TBD is visible at the background of the drop down. Not sure why this is happen

[flexcoders] combobox, sdk 3.5 bug, any workarounds?

2010-04-03 Thread ArunKumar Madas
Any one has a quick workaround for this sdk 3.5 bug. http://forums.adobe.com/message/2642802 It is also seen when you just pop-up a title window containing a Combobox and try to change the dataprovider (doesnt get refreshed until you try to click one of the items).

Re: [flexcoders] ComboBox fullscreen issue

2010-03-30 Thread Alex Harui
mx:ComboBox doesn’t handling scaling that well. You may have to modify the dropdown to compensate for the scaling. On 3/29/10 6:15 PM, "elder.mich...@rocketmail.com" wrote: Short version: ComboBox's dropdown works and renders properly before fullscreen, but not during or after. I'm no

[flexcoders] ComboBox fullscreen issue

2010-03-29 Thread elder.mich...@rocketmail.com
Short version: ComboBox's dropdown works and renders properly before fullscreen, but not during or after. I'm not totally sure how to ask this, so I've actually made a page demonstrating the error , with a very simple Flex app, and all three directions you

Re: [flexcoders] Combobox in a Datagrid not retaining values

2010-02-24 Thread Alex Harui
I assume your editorDataField is really cmbValue. I don’t know what your data looks like, but you probably don’t want to use Binding in the renderer. When the data is set, you want to set cmbValue to whatever value is currently in the dataField for that data item. Then only change it when the

[flexcoders] Combobox in a Datagrid not retaining values

2010-02-24 Thread md_ars
Hello, I have following piece of code from main mxml and below that I have component code for Combobox. I am using label function to decode values as Yes/No when populating Data Grid from the database. It wipe the value from the cell once I click on the combobox and don't select values from it

Re: [flexcoders] Combobox arrow width workaround

2010-01-19 Thread Warren
Sent: Monday, January 18, 2010 8:42 AM Subject: [flexcoders] Combobox arrow width workaround I'd like to be able to set the width of the ComboBox arrow. There is a style for it (arrowButtonWidth) but it doesn't work. It's a known issue/bug with the ComboBox.

[flexcoders] Combobox arrow width workaround

2010-01-18 Thread Warren
I'd like to be able to set the width of the ComboBox arrow. There is a style for it (arrowButtonWidth) but it doesn't work. It's a known issue/bug with the ComboBox. Does anyone have a workaround for this lack of functionality that would work in Flex3? Thanks! Warren

RE: [flexcoders] Combobox in Datagrid appears empty

2009-12-15 Thread Alex Harui
s Sent: Tuesday, December 15, 2009 4:26 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Combobox in Datagrid appears empty I have a simple Combobox defined as the itemEditor for a DataGrid as shown below. The ArrayCollection that is its DataProvider is populated from creationComplete of the

[flexcoders] Combobox in Datagrid appears empty

2009-12-15 Thread emarionjacobs
I have a simple Combobox defined as the itemEditor for a DataGrid as shown below. The ArrayCollection that is its DataProvider is populated from creationComplete of the parent Canvas - and I can see the data going in via the debugger. However, when I insert a row into the datagrid under the c

RE: [flexcoders] ComboBox intialization problem

2009-11-10 Thread Alex Harui
Pride Sent: Tuesday, November 10, 2009 8:11 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] ComboBox intialization problem I am switching viewstacks from a doubleclick on a data grid to a data entry screen for the record. Classic database stuff. Everything works great except for the fi

[flexcoders] ComboBox intialization problem

2009-11-10 Thread Dan Pride
I am switching viewstacks from a doubleclick on a data grid to a data entry screen for the record. Classic database stuff. Everything works great except for the first time on the ComboBox's, then after one time everything works. (In one of my old languages it would be an initialization problem),

RE: [flexcoders] Combobox in DataGrid

2009-09-17 Thread Tracy Spratt
Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Battershall, Jeff Sent: Thursday, September 17, 2009 3:07 PM To: 'flexcoders@yahoogroups.com' Subject: RE: [flexcoders] Combobox in DataGrid You'

RE: [flexcoders] Combobox in DataGrid

2009-09-17 Thread Battershall, Jeff
utes might be a good approach. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of kumarmenon Sent: Thursday, September 17, 2009 2:44 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Combobox in DataGrid I have a DataGrid in m

[flexcoders] Combobox in DataGrid

2009-09-17 Thread kumarmenon
I have a DataGrid in mxml which has one of the Columns as an Combobox Component with Dynamic list of lookup values..I currently load the component on creationComplete..However if i do that the lookup list is static. I want a dynamic lookup list which shows up correctly in the DataGrid..How is

[flexcoders] Combobox in DataGrid

2009-09-14 Thread kumarmenon
Hi Is there anyway i can show a DataGrid cell with Combobox with arrow shown all the time..Currently the way i have it setup is as following. And it does not show the Combobox..

Re: [flexcoders] ComboBox not updating

2009-08-18 Thread Jeffry Houser
You can change the label directly. Look into the protected textInput field of ComboBase. You can easily extend the ComboBox class to expose this textInput as public; and then update it directly. Richard Rodseth wrote: The full story is too long to relate and involves the component which

Re: [flexcoders] ComboBox not updating

2009-08-18 Thread Everson Alves
The dataprovider is an arraycollection or any IList? try dataprovider.refresh(); On Tue, Aug 18, 2009 at 8:59 PM, Richard Rodseth wrote: > > > The full story is too long to relate and involves the component which has > given me more grief than any other - ComboBox. I'm pretty sure I established

[flexcoders] ComboBox not updating

2009-08-18 Thread Richard Rodseth
The full story is too long to relate and involves the component which has given me more grief than any other - ComboBox. I'm pretty sure I established a while ago that there's a bug in using a ComboBox with a bound value for selectedIndex. I have one whose dataprovider (and current selected index)

RE: [flexcoders] ComboBox and XML DataProvider

2009-08-11 Thread Tracy Spratt
, August 11, 2009 11:41 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] ComboBox and XML DataProvider I am trying to create an application that uses several ComboBoxes for users to rate different topics in a range of Low to High. I will save and store the user's selection in an XML

[flexcoders] Combobox like on http://www.bombaysapphire.com

2009-08-11 Thread yonghan79
Hi all,i wonder does anyone ever before create combobox like the one here bombaysapphire.com born detail combobox .What did the creator used?Thanks a lot..

[flexcoders] ComboBox and XML DataProvider

2009-08-11 Thread kristiansalvesen
I am trying to create an application that uses several ComboBoxes for users to rate different topics in a range of Low to High. I will save and store the user's selection in an XML file. The user's do this excericise once a quarter/month (or regular basis) and the application will recieve an X

RE: [flexcoders] comboBox and TextInput

2009-08-10 Thread Tracy Spratt
question. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of cholid cholid Sent: Monday, August 10, 2009 2:43 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] comboBox and TextInput

[flexcoders] comboBox and TextInput

2009-08-09 Thread cholid cholid
Hi all, i'got problem again, i'm quite confused in compete it i have one week and many book i've data ;    1st Question= i want to in my project with RaVis i can select option in ComboBox and the result is the visualization of the option that i select. i.e if i select "A" so the visua

[flexcoders] Combobox emtpy inside of tabNavigator

2009-07-22 Thread flexaustin
So I have a tabNavigator with 3 tabs. I have set creationPolicy ="all" so that to the user it displays quickly. The issue that I have a combobox on tab#3 of the tabNav. and when I set creation="all" and tab#3 is selected the combobox is empty. If set the creationpolicy="auto" the data shows up

[flexcoders] ComboBox cell renderer is not working in a hierarchical datagrid [1 Attachment]

2009-07-16 Thread Patricia Han
Hi Friends, I am trying to create a hierarchical AdvancedDataGrid with a column which is a ComboBox renderer. I used this renderer in other table which is not a hierarchical one and it works perfect. But in the hierarchical data grid, for some reason the combobox is not working. Attached is a scre

[flexcoders] ComboBox : HBox as ItemRenderer - textRollOverColor problem

2009-06-18 Thread cwicky99
So I have an itemRenderer which simply displays text and an image...something like: My ComboBox is configured in MXML such as: My CSS has: ComboBox { textRollOverColor=0xFF; } So what I want is for the items in my ComboBox ("foo") to have "red" text on the Label when t

[flexcoders] comboBox close event trigger

2009-06-04 Thread markgoldin_2000
Is it possible to intercept combobox's close event and discover what triggerd the event? I have looked into event.triggerEvent but was not able to get any value. Thanks.

Re: [flexcoders] combobox data provider update on remote object call

2009-05-12 Thread nitinvk04
hi Jeffry I moved my javascript invoking code to the event handler - and voila! That worked like magic. It worked for all the tests I did. Thanks a million for your idea. I was frustrated with this problem to my wit's end. Hopefully it should keep working forever and not sometimes. Nitin

Re: [flexcoders] combobox data provider update on remote object call

2009-05-12 Thread Jeffry Houser
I can't say for certain, but it sounds to me like, sometimes, your creationComplete handler is firing before the RemoteObject returns data, thus firing the result handler. Unless you have control over the Internet, I don't think there is any way to guarantee that your asynchronous code (AKA

[flexcoders] combobox data provider update on remote object call

2009-05-12 Thread nitink_77
hi All I am working on combo box data provider getting updated after call to a remote object which returns an array. I am trying to update the data provider in a event handler for remote object. The problem is it sometimes gets updated and sometimes not - I read that remote object events are asy

[flexcoders] combobox data provider update on remote object call

2009-05-12 Thread Nitin Kanaskar
hi All I am working on combo box data provider getting updated after call to a remote object which returns an array. I am trying to update the data provider in a event handler for remote object. The problem is it sometimes gets updated and sometimes not - I read that remote object events are asyn

Re: [flexcoders] ComboBox SelectedItem why not inspectable.

2009-04-03 Thread Wesley Acheson
lopment services available > -- > > *From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On > Behalf Of *Wesley Acheson > *Sent:* Friday, April 03, 2009 10:48 AM > *To:* flexcoders@yahoogroups.com > *Subject:* Re: [flexcoders] ComboBo

Re: [flexcoders] ComboBox SelectedItem why not inspectable.

2009-04-03 Thread Jeffry Houser
I spend a *LOT* of time looking through the language reference for classes that I use. Especially when trying to solve an issue. Wesley Acheson wrote: Yes thats the conclusion that I had reached this morning when working with it. I was just wondering if there was a reason to hide it from

RE: [flexcoders] ComboBox SelectedItem why not inspectable.

2009-04-03 Thread Tracy Spratt
: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Wesley Acheson Sent: Friday, April 03, 2009 10:48 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] ComboBox SelectedItem why not inspectable. Yes thats the conclusion that I had reached this morning when working

Re: [flexcoders] ComboBox SelectedItem why not inspectable.

2009-04-03 Thread Wesley Acheson
Yes thats the conclusion that I had reached this morning when working with it. I was just wondering if there was a reason to hide it from codeHinting. I mean they must have put that in there for a reason? I can't fathom it. Not on this work iteration but on one serveral weeks back I lost a lot o

Re: [flexcoders] ComboBox SelectedItem why not inspectable.

2009-04-03 Thread Jeffry Houser
Looking at the ComboBox code, it looks like the "inspectable" metadata is set to none. I assume that hides it from code hinting. However, despite that you should be able to use it w/ no problems in MXML just as you would w/ ActionScript. Wesley Acheson wrote: Hi, Why isn't the ComboBox.

[flexcoders] ComboBox SelectedItem why not inspectable.

2009-04-03 Thread Wesley Acheson
Hi, Why isn't the ComboBox.selectedItem available in MXML? It would be better then selectedIndex in many cases. Regards, Wesley Acheson

RE: [flexcoders] Combobox and prompt

2009-03-27 Thread Tracy Spratt
2:05 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Combobox and prompt Try setting an empty string as the first item in the data provider. I should imagine that should work fine. 2009/3/27 markgoldin_2000 mailto:markgoldin_2...@yahoo.com> yahoo.com> I am trying to use a blan

Re: [flexcoders] Combobox and prompt

2009-03-27 Thread Wesley Acheson
Try setting an empty string as the first item in the data provider. I should imagine that should work fine. 2009/3/27 markgoldin_2000 > I am trying to use a blank Prompt with my combobox in order to have a blank > item on the top. But after selecting a non blank item the blank one is not > in t

[flexcoders] Combobox and prompt

2009-03-27 Thread markgoldin_2000
I am trying to use a blank Prompt with my combobox in order to have a blank item on the top. But after selecting a non blank item the blank one is not in there. do I need to use blank data to get what I need? Thanks

[flexcoders] Combobox - force direction

2009-03-26 Thread markgoldin_2000
Is it possible to force a direction a combobox opens up to? Thanks

RE: [flexcoders] Combobox Problem

2009-03-20 Thread Alex Harui
eswar Sent: Thursday, March 19, 2009 1:42 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Combobox Problem I have a problem with combobox.I will explain in detail.In my application i have an advanceddatagrid.it has 4 comboboxes as itemrenderer.two comboboxes loads dynamic datas from

[flexcoders] Combobox Problem

2009-03-19 Thread venkat eswar
I have a problem with combobox.I will explain in detail.In my application i have an advanceddatagrid.it has 4 comboboxes as itemrenderer.two comboboxes loads dynamic datas from php.my problem is adding rows to datagrid refreshes the value of the selected combobox. And this problem is only for  comb

[flexcoders] comboBox in datagrid

2009-03-10 Thread Libby
Hi People Maybe someone could remind me, I've done this before but apparently now have so much knowledge in my brain that the old stuff is getting pushed out : ) I have a ComboBox itemEditor in a datagrid. The datagrid dataprovider is bound to an arrayCollection which among other things contain

[flexcoders] ComboBox Text Color

2009-03-04 Thread jwc_wensan
Hello, I need to change the color of the text in a ComboBox on rollover. The fillColors are light brown and the text(color) is dark blue. When I place the mouse over the ComboBox, I have the fillColors change the ComboBox to a dark blue. Now I want the text in the ComboBox to change to white o

RE: [flexcoders] ComboBox selectedIndex revisited

2009-01-26 Thread Tracy Spratt
available From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Richard Rodseth Sent: Monday, January 26, 2009 4:46 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] ComboBox selectedIndex revisited I see there was another long thread about this p

[flexcoders] ComboBox selectedIndex revisited

2009-01-26 Thread Richard Rodseth
I see there was another long thread about this problematic component back in October (Dan Pride) I don't see why this shouldn't work: where selectedDateRangeIndex() scans the available ranges, and this.selectedDateRangePreset and this.availableRanges are bindable. But it doesn't. When the

Re: [flexcoders] combobox arrow size and vertical line

2008-12-30 Thread Manish Jethani
On Tue, Dec 30, 2008 at 9:38 PM, flexaustin wrote: > Is it possible to skin or change the size or shape of the arrow on the > combobox control? Also can you remove or change the vertical line that > separates the arrow button from selected item/label? You'll have to make your own skin. ComboBox

[flexcoders] combobox arrow size and vertical line

2008-12-30 Thread flexaustin
Is it possible to skin or change the size or shape of the arrow on the combobox control? Also can you remove or change the vertical line that separates the arrow button from selected item/label?

[flexcoders] ComboBox SelectedItem Problem with resultFormat e4x - Very Urgent

2008-12-11 Thread samsonkiran
Hi I have an Flex file (.mxml) in which i am making the HTTPService call to one JSP. This JSP returns me an XML data. I need to populate the comboBox in the FLEX with the data coming from the JSP in XML format. This is the sample code. test.mxml http://www.adobe.com/2006/mxml"; width="100%" h

[flexcoders] Combobox text does not render on some

2008-12-11 Thread darylgmyers
I have form window with about 20 combobox fields. Each one is bound to a unique arraycollection which is bindable. When the window is first displayed there are 3 of the combobox firlds that do not display the text from the drop down list even though the value has been loaded correctly. As so

Re: [flexcoders] ComboBox as itemRenderer/editor in Datagrid is not updating dataProvider...

2008-11-25 Thread Sefi Ninio
ers > find out there's been a change to their data. > > > > *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On > Behalf Of *biosmonkey > *Sent:* Monday, November 24, 2008 7:54 AM > *To:* flexcoders@yahoogroups.com > *Subject:* [flexcoders] ComboBox as i

RE: [flexcoders] ComboBox as itemRenderer/editor in Datagrid is not updating dataProvider...

2008-11-24 Thread Alex Harui
Depending on your data, you may need to call itemUpdated so renderers find out there's been a change to their data. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of biosmonkey Sent: Monday, November 24, 2008 7:54 AM To: flexcoders@yahoogroups.com Subject: [flexc

[flexcoders] ComboBox as itemRenderer/editor in Datagrid is not updating dataProvider...

2008-11-24 Thread biosmonkey
I'm seeing a problem with a combobox in a datagrid that I simply have not been able to solve. The setup: Consider a datagrid where one of the columns has a combobox itemrenderer/editor in each row with choices A,B,C,or D. Outside of the datagrid is a Save button, along with another combobox exac

Re: [flexcoders] comboBox selectedIndex

2008-10-30 Thread Adrian Williams
If you know what index (n) you want to set it to, comboBox.selectedIndex = n; Adrian Gökhan wrote: How can i change the selectedIndex of a comboBox ? The selectedIndex is get 0 in any case. isn't it writeable ?

[flexcoders] comboBox selectedIndex

2008-10-30 Thread Gökhan
How can i change the selectedIndex of a comboBox ? The selectedIndex is get 0 in any case. isn't it writeable ?

[flexcoders] ComboBox with Add New... item

2008-10-23 Thread frosifer
Does anyone have a good way of creating a ComboBox where the first item is an "Add New..." option that is NOT part of the underlying data collection (i.e., the data provider). I do not want to add an item at the beginning of the data provider, and I want to make sure changes in the collection are r

RE: [flexcoders] ComboBox in Component won't open to Saved Value

2008-10-11 Thread Randy Martin
tober 08, 2008 10:05 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] ComboBox in Component won't open to Saved Value ComboBox.selectedItem will only work if you assign a *reference to an item in the ComboBox dataProvider*. This is rarely possible and is not in your case. Wha

Re: [flexcoders] ComboBox edit field selection when populated

2008-10-10 Thread Mark Carter
Have you tried google for an autocomplete component? This should be helpful: http://www.websector.de/blog/2008/04/30/quick-tip-avoid-issues-using-adobes-autocomplete-input-component-using-flex-3/ There are also a few on the Adobe Exchange: http://www.adobe.com/cfusion/exchange/index.cfm -- V

[flexcoders] ComboBox edit field selection when populated

2008-10-09 Thread valdhor
I have a combobox that is unpopulated on open but is editable. As the user types, I check the length of the text field and at a certain point I fire off a RemoteObject call to the server. This returns a list of items that match what the user enters. Great, this bit works. Now, I want to populate t

RE: [flexcoders] ComboBox in Component won't open to Saved Value

2008-10-08 Thread Tracy Spratt
ay, October 08, 2008 4:49 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] ComboBox in Component won't open to Saved Value > The Combobox by itself does not really support what > you're trying to do. Are you telling me that there is no simply way to have a user pick

RE: [flexcoders] ComboBox in Component won't open to Saved Value

2008-10-08 Thread Dan Pride
m: Battershall, Jeff <[EMAIL PROTECTED]> > Subject: RE: [flexcoders] ComboBox in Component won't open to Saved Value > To: flexcoders@yahoogroups.com > Date: Wednesday, October 8, 2008, 1:38 PM > The Combobox by itself does not really support what > you're trying to do

Re: [flexcoders] ComboBox in Component won't open to Saved Value

2008-10-08 Thread Howard Fore
On Wed, Oct 8, 2008 at 2:04 PM, Dan Pride <[EMAIL PROTECTED]> wrote: > Geez I can set a popup and get the value back with Php or any of a number > of other languages. > Seems REALLY absurd that this is this difficult. > Different things are difficult in different languages. That's why they evolve

RE: [flexcoders] ComboBox in Component won't open to Saved Value

2008-10-08 Thread Dan Pride
the box combobox? thanks for you time. --- On Wed, 10/8/08, Battershall, Jeff <[EMAIL PROTECTED]> wrote: > From: Battershall, Jeff <[EMAIL PROTECTED]> > Subject: RE: [flexcoders] ComboBox in Component won't open to Saved Value > To: flexcoders@yahoogroups.com > Date:

RE: [flexcoders] ComboBox in Component won't open to Saved Value

2008-10-08 Thread Battershall, Jeff
--- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dan Pride Sent: Wednesday, October 08, 2008 1:23 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] ComboBox in Component won't open to Saved Value This seems absurdly difficult for so simple a function. I am t

RE: [flexcoders] ComboBox in Component won't open to Saved Value

2008-10-08 Thread Dan Pride
should be so simple --- On Wed, 10/8/08, Dan Pride <[EMAIL PROTECTED]> wrote: > From: Dan Pride <[EMAIL PROTECTED]> > Subject: RE: [flexcoders] ComboBox in Component won't open to Saved Value > To: flexcoders@yahoogroups.com > Date: Wednesday, October 8, 2008, 12:38 P

RE: [flexcoders] ComboBox in Component won't open to Saved Value

2008-10-08 Thread Dan Pride
/08, Tracy Spratt <[EMAIL PROTECTED]> wrote: > From: Tracy Spratt <[EMAIL PROTECTED]> > Subject: RE: [flexcoders] ComboBox in Component won't open to Saved Value > To: flexcoders@yahoogroups.com > Date: Wednesday, October 8, 2008, 11:34 AM > Why are you doin

RE: [flexcoders] ComboBox in Component won't open to Saved Value

2008-10-08 Thread Dan Pride
/08, Tracy Spratt <[EMAIL PROTECTED]> wrote: > From: Tracy Spratt <[EMAIL PROTECTED]> > Subject: RE: [flexcoders] ComboBox in Component won't open to Saved Value > To: flexcoders@yahoogroups.com > Date: Wednesday, October 8, 2008, 11:34 AM > Why are you doin

RE: [flexcoders] ComboBox in Component won't open to Saved Value

2008-10-08 Thread Dan Pride
As Homer would say doh ! Thanks Dan --- On Wed, 10/8/08, Tracy Spratt <[EMAIL PROTECTED]> wrote: > From: Tracy Spratt <[EMAIL PROTECTED]> > Subject: RE: [flexcoders] ComboBox in Component won't open to Saved Value > To: flexcoders@yahoogroups.com > Date: Wednesd

RE: [flexcoders] ComboBox in Component won't open to Saved Value

2008-10-08 Thread Tracy Spratt
lf Of Dan Pride Sent: Wednesday, October 08, 2008 10:57 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] ComboBox in Component won't open to Saved Value Thanks for the response. I understand what needs to be done as you described but I still have one problem. I tried this

RE: [flexcoders] ComboBox in Component won't open to Saved Value

2008-10-08 Thread Dan Pride
cy Spratt <[EMAIL PROTECTED]> > Subject: RE: [flexcoders] ComboBox in Component won't open to Saved Value > To: flexcoders@yahoogroups.com > Date: Wednesday, October 8, 2008, 11:05 AM > ComboBox.selectedItem will only work if you assign a > *reference to an > item in the C

RE: [flexcoders] ComboBox in Component won't open to Saved Value

2008-10-08 Thread Tracy Spratt
m [mailto:[EMAIL PROTECTED] On Behalf Of Dan Pride Sent: Wednesday, October 08, 2008 10:01 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] ComboBox in Component won't open to Saved Value Hi I have a ComboBox used as a Popup on a form component. It saves fine using the following funct

[flexcoders] ComboBox in Component won't open to Saved Value

2008-10-08 Thread Dan Pride
Hi I have a ComboBox used as a Popup on a form component. It saves fine using the following function private function closeGenderPop(event:Event):void { ComboBox(event.target).selectedItem.label}; I want to have it display the stored value the next time it is opened. I trie

RE: [flexcoders] Combobox does not hold selected item

2008-09-16 Thread Alex Harui
Usually because you need to call itemUpdated on the collection From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markgoldin_2000 Sent: Tuesday, September 16, 2008 1:12 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Combobox does not hold selected item I have a

[flexcoders] Combobox does not hold selected item

2008-09-16 Thread markgoldin_2000
I have a combobox in dataGrid as a custom renderer. When I select an item in the combo the datagrid's data property has correct value, but combo still shows its initial value. Any idea why? Thanks

RE: [flexcoders] Combobox as Custom Renderer

2008-09-14 Thread Joan Lafferty
Hello Recruiter/Manager, Hope you doing great! PLS. send resumes to [EMAIL PROTECTED] for the below requirement ASAP. with rate conformation and contact details Title: Mainframe QA Analyst Location: Tulsa , OK Duration: 8 Months + Skills: QA, Quality Center , Ideal, Data Com, Description:

[flexcoders] Combobox as Custom Renderer

2008-09-14 Thread markgoldin_2000
If I have a combobox as a custom renderer how do I set dataProvider for the combobox? My dataProvider is an XML. Thanks

Re: [flexcoders] combobox fontFamily problem

2008-09-10 Thread David Pariente
Sorry so much, my mistakei have the Bold button on, on the component Now it works after i unselect it. Thnx - Mensaje original De: David Pariente <[EMAIL PROTECTED]> Para: flexcoders Enviado: jueves, 11 de septiembre, 2008 0:44:56 Asunto: [flexcoders] combobox font

[flexcoders] combobox fontFamily problem

2008-09-10 Thread David Pariente
Hello, Im specifying the fontFamily of a combobox for match the rest of website and i couldn't do it or find any info about it, i've tryed to change it on it's CSS style, trying doing my own style, and specifying it with the fontFamily tag... Nothing seems to work. On the other components of

[flexcoders] Combobox focus glowing

2008-09-10 Thread flexaustin
Is there a way to shut off the glowing when a combobox is selected? I cannot find which style property shuts it off. BTW, I am setting the combobox to editable=true so that may have something to do with it. When you click on the combobox to edit it the combobox or the uitextfield glows and I am

RE: [flexcoders] ComboBox Disable Drop Down Items

2008-08-28 Thread Alex Harui
Try forcing caret to false when calling super From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of wwwpl Sent: Thursday, August 28, 2008 9:49 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] ComboBox Disable Drop Down Items I am trying to disable ComboBox drop down

[flexcoders] ComboBox Disable Drop Down Items

2008-08-28 Thread wwwpl
I am trying to disable ComboBox drop down items. I found an example on Alex's site for disabling items in a List so I took that and set it as the DropDownFactory in the combo box. But it doesn't work completely. I can still key down and get an outline of the disabled item. I am curious why

Re: [flexcoders] Combobox to show table columns?

2008-08-26 Thread Josh McDonald
gust 26, 2008 9:19 AM > *To:* flexcoders@yahoogroups.com > *Subject:* [flexcoders] Combobox to show table columns? > > > > Just wonder if anyone has a trick to dynamically populate a combobox > with the column labels of a table or XML source. I seem to only manage > to retriev

Re: [flexcoders] Combobox to show table columns?

2008-08-26 Thread Blair Cox
Cheers Alex! -- Blair From: Alex Harui <[EMAIL PROTECTED]> Reply-To: Date: Tue, 26 Aug 2008 12:40:18 -0700 To: Conversation: [flexcoders] Combobox to show table columns? Subject: RE: [flexcoders] Combobox to show table columns? Just walk the children() and pull the name() and

RE: [flexcoders] Combobox to show table columns?

2008-08-26 Thread Alex Harui
Just walk the children() and pull the name() and add it to an array From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of cox.blair Sent: Tuesday, August 26, 2008 9:19 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Combobox to show

[flexcoders] Combobox to show table columns?

2008-08-26 Thread cox.blair
Just wonder if anyone has a trick to dynamically populate a combobox with the column labels of a table or XML source. I seem to only manage to retrieve the values of the rows, not the actual column name. I know I manually list them, but this defeats the purpose if the table were to change. Ex. So

  1   2   3   4   >