[flexcoders] Auto Complete Text Input

2009-10-14 Thread yogesh patel
Hi, I am using Auto Complete Text Input Component with some data provider.when focus comes to this component from any other component than text in the Auto complete text input get selected and when i press delete than text disappears but then after i press enter than first index

Re: [flexcoders] Auto Complete Text Input

2009-10-14 Thread Jeffry Houser
Sounds like a bug in the component to me. Which AutoComplete component are you using? The Flextras AutoCompleteComboBox properly resets the selectedIndex to -1 if you delete all the text in the input. ( http://www.flextras.com/?event=ProductHomeProductID=10 ). yogesh patel wrote: Hi,

[flexcoders] auto complete component in flex 1.5

2008-10-02 Thread sanjit kumar
Hi all, I want to implement auto complete feature in flex 1.5. We have auto complete component in flex 2.0. is there any way to use flex 2.0 component in flex 1.5. also if any one have suggestion on how to implement this feature in flex 1.5. if any body have similar component. thanx

[flexcoders] Auto-complete list for ComboBox different in AS and MXML - why?

2006-07-25 Thread ben.clinkinbeard
Hello, I have a ComboBox defined in MXML that when I go to add an attribute to, the auto-complete list includes selectedIndex, but not selectedItem or selectedLabel. When I address the cb in AS, I get all 3 options as expected. Sup wit dat? Thanks, Ben http://www.returnundefined.com --

[flexcoders] Auto-complete

2005-05-11 Thread seesaw25
Has anyone implemented a flex-based solution for auto-complete on a TextInput (think Google Suggest)? Yahoo! Groups Links * To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ * To unsubscribe from this group, send an email to: [EMAIL PROTECTED] *

RE: [flexcoders] Auto-complete

2005-05-11 Thread Steven Webster
Has anyone implemented a flex-based solution for auto-complete on a TextInput (think Google Suggest)? We blogged about something similar here: http://www.richinternetapps.com/archives/79.html Best, Steven Yahoo! Groups Links * To visit your group on the web, go to:

Re: [flexcoders] Auto-complete

2005-05-11 Thread Sjors Pals
Well its not too hard if you just make a serverside script which suggests the words, and then just parse it in flex, i did build a google like sample in html: http://www.ria-info.com/test.html Regards, Sjors Steven Webster wrote: Has anyone implemented a flex-based solution for

Re: [flexcoders] Auto-complete

2005-05-11 Thread Tarik Ahmed
Along the lines of that, check out the "suggest" implementation on this search engine. When I saw this, the first thing that came to my mind was this would be cool to do in Flex. http://www.snap.com/ Manish Jethani wrote: On 5/11/05, seesaw25 [EMAIL PROTECTED] wrote: Has

Re: [flexcoders] Auto-complete

2005-05-11 Thread Manish Jethani
On 5/11/05, Tarik Ahmed [EMAIL PROTECTED] wrote: Along the lines of that, check out the suggest implementation on this search engine. When I saw this, the first thing that came to my mind was this would be cool to do in Flex. http://www.snap.com/ For those interested in how it works,