我正在使用extjs實現項目。我有兩個字段作爲問題和選項的選項形式。我的觀點代碼是 -在extjs中,如何將textfields值插入到按鈕單擊的網格中
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'}
]
});
現在添加buttonclick,我想要在gridview中顯示這些插入的字段值。並且還想將選項字段設置爲空白以插入多個選項。並需要在gridview中顯示所有這些插入的選項。所以請你能建議我該怎麼做。我對extjs很陌生,請幫助我。
請任何人都可以幫助我嗎? –