如何使用空格限制文本字段创建?

时间:2012-02-13 13:58:25

标签: extjs

我在创建文本字段时遇到问题,即我可以使用所有空格创建一个字段。我使用过"allowblank:false"但仍然只允许空格。我的文字字段ID为Textfield_value

2 个答案:

答案 0 :(得分:4)

最后我得到了这个问题的答案。

this. Field name.addListener({

            blur : function(){
                this.setValue(this.getValue().trim());
            }
        });

这会修剪textfield

中的空白区域

感谢您的回答

答案 1 :(得分:0)

据我了解您的问题,您需要该用户不能在文本字段中输入空格。请查看:

stop extjs TextField from accepting blanks and spaces

这是另一个对您有帮助的链接。

http://www.sencha.com/forum/showthread.php?30790-TextField-AllowBlank-to-trim-spaces