我正在用 extjs 实现项目。我有选项表单,其两个字段为问题和选项。我的查看代码是-
Ext.create('Ext.form.Panel', {
title: 'Question-option',
width: 300,
bodyPadding: 10,
renderTo: Ext.getBody(),
items: [{
xtype: 'textfield',
name: 'Question',
fieldLabel: 'Question',
allowBlank: false // requires a non-empty value
}, {
xtype: 'textfield',
name: 'Option',
fieldLabel: 'Option',
allowBlank: false
},
{xtype: 'button', text: 'Ok'},
{xtype: 'button', text: 'Cancel'}
]
});
现在在添加按钮单击时,我想在 gridview 中显示这些插入的字段值。并且还希望将选项字段设为空白以插入多个选项。并且需要在 gridview 中显示所有这些插入的选项。所以请你建议我该怎么做。我对extjs很陌生,请帮助我。