通过Sencha Touch 2中的表单字段进行迭代

时间:2012-03-09 18:26:11

标签: forms field sencha-touch-2

我正在尝试将sencha touch应用程序从1.1版重写为版本2.

在st 1.1中,我以这种方式遍历表单字段:

this.fields.each(function(field) {
     // Code here
}, this);

在st 2中,this.fields为null。是否有另一种方法可以在表单面板中获取字段列表?

提前致谢,

1 个答案:

答案 0 :(得分:4)

你可以试试这个

var fields = this.getFieldsArray();
Ext.each(fields, function (field) {
       // code here
}, this);

this.getFieldsAsArray().forEach(function(field) {
     // code here
});