我有这段代码,其中包含某些布局中的项目。我想重复这个项目(firstRowButtons
)一次MaxNumber
。
items: [
// for(i = 0; i < MaxNumber; i++)
{
xtype: 'firstRowButtons'
},
{
margin: '10 50 10 50',
padding: '10 20 10 20',
xtype: 'textfield',
name: 'Name',
fieldLabel: 'Survey Name',
maxLength: 100,
allowBlank: false,
disabled: true
},
{
margin: '10 50 10 50',
padding: '10 20 10 20',
xtype: 'combo',
fieldLabel: 'Number of Questions',
name: 'NofQuestions',
queryMode: 'local',
store: ['1', '2', '3'],
displayField: 'noOfQuestions',
autoSelect: true,
forceSelection: true,
disabled: true,
},
]
}, {
padding: '10 10 10 10',
xtype: 'secondRowButtons'
},
我知道循环不能在数组中使用。注释只是为了显示逻辑并指出我想要重复的数组元素。
有什么帮助吗?