Re: [flexcoders] Keep combobox open to allow multiselect

2008-06-05 Thread rviswanathan
I am still not clear on how this can be done. I must use a combobox (this is a must-have for me). This is what I attempted... can you please give some pointers based on my code below? ?xml version=1.0 encoding=utf-8? mx:ComboBox xmlns:mx=http://www.adobe.com/2006/mxml; change=close()

Re: [flexcoders] Keep combobox open to allow multiselect

2008-06-05 Thread Felipe Fernandes
Ram, The component you are trying to create shouldn´t exetend the combobox for two reasons, first you would have to override a lot of the combobox methods and second (and for me the most important) you would break the common sense of how a combobox should behave for example if it doesn´t close

[flexcoders] Keep combobox open to allow multiselect

2008-06-04 Thread rviswanathan
Hi I have created a combo box with a checkbox renderer on each of its items. When I select an entry in the combobox, the box closes automatically. I want to prevent his so that I can multiselect elements in the combobox. Is there a way to do this? Even if I extend the ComboBox and override

RE: [flexcoders] Keep combobox open to allow multiselect

2008-06-04 Thread Alex Harui
I'd just use a button and a Popup list From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of rviswanathan Sent: Wednesday, June 04, 2008 4:28 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Keep combobox open to allow multiselect