Welcome!

Welcome to the Official BlackBerry Support Community Forums. This is your resource to discuss support topics with your peers, and learn from each other. New to the forum? Please visit the ‘Getting Started’ link below.
inside custom component

Adobe AIR Development

Reply
Developer
jtegen
Posts: 6,145
Registered: ‎10-27-2010
My Carrier: AT&T
Accepted Solution

TextInput restric like spark/mx.TextInput

The QNX TextInput class does not have a restrict property like the mx/spark.TextInput class does.  Very handy feature.  will we need to roll our own or will the next release of the SDK support this?  I am not needing the change in keyboards for things like email and numbers, but character specific to allow or restrict certain types of characters.

Please use plain text.
Developer
JRab
Posts: 2,462
Registered: ‎11-04-2010

Re: TextInput restric like spark/mx.TextInput

hey john,

 

have you tried accessing the TextInput object's textField property? its a reference to the inner textfield's object within TextInput. the textfield has a restrict property where you can restrict a user's input. i havent tested it out but in theory it should work. Try the followng:

 

 

myTextInput.textField.restrict = "A-Z 0-9";

 

that should only allow uppercase and numbers. let me know how it works out! good luck!

 

J. Rab (Blog) (Twitter)
--
1. If you liked my post or found it useful please click on the thumbs up and provide a Like!
2. If my post solved your problem please click on the Accept as Solution button. Much appreciated!

Approved Apps: OnTrack | ssShots | Hangman
Please use plain text.
Developer
jtegen
Posts: 6,145
Registered: ‎10-27-2010
My Carrier: AT&T

Re: TextInput restric like spark/mx.TextInput

I think a few people will owe you a beer to w if there is every a PB conference.

 

That was it!

 

Also, restrictive use is set to '^Q' if you done want to allow the leter 'Q' typed in.

Please use plain text.
Developer
JRab
Posts: 2,462
Registered: ‎11-04-2010

Re: TextInput restric like spark/mx.TextInput

haha i could never turn down a good beer! now im going hope there will be a PB conference in the near future :smileyvery-happy:

J. Rab (Blog) (Twitter)
--
1. If you liked my post or found it useful please click on the thumbs up and provide a Like!
2. If my post solved your problem please click on the Accept as Solution button. Much appreciated!

Approved Apps: OnTrack | ssShots | Hangman
Please use plain text.