简体   繁体   中英

how to restrict users to insert only numbers in a TextInput?

I want that the users will be able to insert only numbers in a specific TextInput. Anybody knows how to do this ?

http://livedocs.adobe.com/flex/3/langref/mx/controls/TextInput.html#restrict

You can use a range like so:

In AS3:

myTextInput.restrict = '0-9';

In Flex:

<mx:TextInput id="myTextInput" restrict="0-9" />

I haven't tested this, but it should work just fine, according to the docs.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM