ExtJs多行输入

时间:2010-07-05 16:22:07

标签: javascript extjs

如何在EXTJS中创建带垂直滚动条的多行输入?

我用过这个

 noteField = new Ext.form.TextField({
                emptyText: 'note...',
                multiline: true,
                applyTo: 'txtNote',
                maxLength: 250
            });

            noteField.setSize(200, 100);

但输入不是多行...

有人可以帮助我吗?

3 个答案:

答案 0 :(得分:8)

您需要使用:

 Ext.form.TextArea()

像这样:

 var noteField = new Ext.form.TextArea({
      //config here    
 });

答案 1 :(得分:0)

使用TextArea代替TextField。我也面临同样的问题。此代码段适用于我:

editor: new Ext.form.TextArea({

})

答案 2 :(得分:0)

尝试下面的

{{1}}