5

我正在 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 事件以将所有这些文本字段数据添加到存储中。

4

1 回答 1

5

以这家店为例:

Ext.define ('model', {
  extend: 'Ext.data.Model' ,
  fields: ['Question', 'Option']
});

var store = Ext.create ('Ext.data.Store', {
  model: 'model'
});

// Handler called on button click event
function handler (button) {
  var form = button.up('form').getForm ();

  // Validate the form
  if (form.isValid ()) {
    var values = form.getFieldValues ();
    store.add ({
      Question: values.Question ,
      Option: values.Option
    });
  }
  else {} // do something else here
}

您获取表单数据,然后将这些数据添加到存储中。

恰兹

于 2012-10-31T14:08:37.873 回答