Haim
Haim

Reputation: 63

Browser autocomplete suuport in flex (email field)?

Does Flex support browser's autocomplete?

I would like it to suggest my users their used emails for an email field, as done in html (input type="email" autocomplete="on").

Upvotes: 1

Views: 162

Answers (2)

JeffryHouser
JeffryHouser

Reputation: 39408

Does Flex support browser's autocomplete?

You will not be able to access any browser specific data inside of a Flex app. Flex does not have an AutoComplete component built in; but there are a few out there.

I prefer ours for obvious reasons; so I suggest checking out the Flextras AutoCompleteComboBox component, which has an MX Version, a Spark version, works on mobile and is available for free for production use.

Upvotes: 0

Stian
Stian

Reputation: 1299

I don't think you can read the browsers autocomplete list, but you could implement your own autocomplete component in Flex, give http://hillelcoren.com/flex-autocomplete/ a try!

Upvotes: 1

Related Questions