我正在 extjs 中实施项目。我对 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',
vtype: 'Option' // requires value to be a valid email address format
},
{xtype: 'button', text: 'Ok'},
{xtype: 'button', text: 'Cancel'}
]
});
在确定按钮上单击我想将这些文本字段数据添加到存储中。
那么您能否建议我如何编写 buttonclick 事件以将所有这些文本字段数据添加到存储中。