Hybrid View
-
5 May 2012 8:18 AM #1
Answered: How to make a telephone number input
Answered: How to make a telephone number input
In Sencha touch 2 xtype: 'numberfield' creates a input which type is number. I want to create a input field which input type will be tel. How to do it?
I want a input like
Code:<input class="x-input-el x-form-field x-input-number" type="tel" id="ext-element-56" name="telephone" autocapitalize="on" placeholder="123456789">
-
Best Answer Posted by mitchellsimoens
Try something like
Code:new Ext.Container({ fullscreen : true, items : [ { xtype : 'textfield', label : 'Phone Number', component : { type : 'tel' } } ] });
-
7 May 2012 5:16 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,714
- Vote Rating
- 438
- Answers
- 3113
Try something like
Code:new Ext.Container({ fullscreen : true, items : [ { xtype : 'textfield', label : 'Phone Number', component : { type : 'tel' } } ] });Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.
-
7 May 2012 5:47 PM #3
I've needed this and just stumbled across it. Thanks for the answer mitchell!!!
-
8 May 2012 1:24 AM #4


Reply With Quote