1

是否可以在 ST2 中的文本字段上设置掩码?

{
    xtype: 'textfield',
    name: 'phonenumber',
    label: 'Your phone number',
    mask: '(999) 999-9999'
},

在 Ext 中工作但不在 ST 中,我“认为”ST 是建立在 Ext 之上的

4

1 回答 1

3

Sencha Touch 中没有直接属性可以完成这项工作。

所以,你可能需要做这样的事情..

{
    xtype: 'textfield',
    name: 'phonenumber',
    label: 'Your phone number',
    placeHolder: '(999) 999-9999',
    listeners : {
      keyup : function( ) {
        // Code that checks the i/p value according to placeHolder goes here ...
      } 
    }
},

顺便说一句,Sencha Touch 论坛上有一篇帖子

希望对你有帮助!

于 2012-04-26T13:43:55.100 回答