[flex_india:0] Implement text input in combobox

2 views
Skip to first unread message

biplab

unread,
Apr 19, 2010, 9:44:33 AM4/19/10
to Flex India Community
I am new in flex. I want to implement text input in comboBox to take
dynamically input. Please help

--
You received this message because you are subscribed to the Google Groups "Flex India Community" group.
To post to this group, send email to flex_...@googlegroups.com.
To unsubscribe from this group, send email to flex_india+...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/flex_india?hl=en.

Renu

unread,
Apr 19, 2010, 10:14:57 PM4/19/10
to flex_...@googlegroups.com
use item renders.
 
--
Thanks and Regards,
Renu

Yozef

unread,
Apr 27, 2010, 3:58:41 PM4/27/10
to Flex India Community
Item Renderers just creates the component. If you click in the
TextInput, the comboBox closes...

On Apr 19, 10:14 pm, Renu <renud...@gmail.com> wrote:
> use item renders.
>
> --
> Thanks and Regards,
> Renu
>
> On Mon, Apr 19, 2010 at 7:14 PM, biplab <bebip...@gmail.com> wrote:
> > I am new in flex. I want to implement text input in comboBox to take
> > dynamically input. Please help
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Flex India Community" group.
> > To post to this group, send email to flex_...@googlegroups.com.
> > To unsubscribe from this group, send email to
> > flex_india+...@googlegroups.com<flex_india%2Bunsubscribe@googlegrou ps.com>
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/flex_india?hl=en.
>
> --
> You received this message because you are subscribed to the Google Groups "Flex India Community" group.
> To post to this group, send email to flex_...@googlegroups.com.
> To unsubscribe from this group, send email to flex_india+...@googlegroups.com.
> For more options, visit this group athttp://groups.google.com/group/flex_india?hl=en.

Alekhya Krishna

unread,
Apr 30, 2010, 6:09:58 AM4/30/10
to flex_...@googlegroups.com
use item render

nithya flex

unread,
Apr 30, 2010, 7:35:30 AM4/30/10
to flex_...@googlegroups.com
check this

<mx:ComboBox editable="true" width="100" >
            <mx:dataProvider>
                <mx:String>1</mx:String>
                <mx:String>2</mx:String>
                <mx:String>3</mx:String>
            </mx:dataProvider>
        </mx:ComboBox>

Malek S

unread,
Apr 30, 2010, 6:51:06 AM4/30/10
to flex_...@googlegroups.com
Request you all to please paste the code

On Wed, Apr 28, 2010 at 1:28 AM, Yozef <sac...@gmail.com> wrote:

mohammed nazeer

unread,
Apr 30, 2010, 9:35:14 AM4/30/10
to flex_...@googlegroups.com
Hi,

one more way to get the data dynamically....

-----------------------------------
main.mxml
------------------
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
    <mx:Model id="m1" source="combo.xml"/>
    <mx:ComboBox dataProvider="{m1.data}"/>
</mx:Application>

combo.xml
------------------
 <detail>
<data>box1</data>
<data>box2</data>
<data>box3</data>
<data>box4</data>
</detail>


-----------------------------------------------------
            With Regards,
           MK.Nasurudeen.
Reply all
Reply to author
Forward
0 new messages