10

我有一个组合框的以下代码,如何获取在组合框中选择的值并将该值加载到变量中,然后再使用它。

谢谢

Ext.define('Column', {
    extend: 'Ext.data.Model',
    fields: ['data1', 'Data2']
});

var store = Ext.create('Ext.data.Store', {
    model: 'Column',
    autoLoad: true,
    proxy: {
        type: 'ajax',
        url: '/data.xml',
        reader: {
            type: 'xml',
            record: 'result'
        }
    }
});

var simpleCombo = Ext.create('Ext.form.field.ComboBox', {
    store: store,
    displayField: 'data1',
    valueField: 'data1',
    width: 250,
    labelWidth: 120,
    fieldLabel: 'select a value',
    renderTo: 'simpleCombo',
    queryMode: 'local',
    typeAhead: true
});
4

3 回答 3

12

只需使用选择事件

var simpleCombo = Ext.create('Ext.form.field.ComboBox', {
            store: store,
            displayField: 'data1',
            valueField: 'data1' ,
            width: 250,
            labelWidth: 120,
            fieldLabel: 'select a value',
            renderTo: 'simpleCombo',
            queryMode: 'local',
            typeAhead: true,
            listeners: { 
               select: function(combo, records) {
                   // note that records are a array of records to be prepared for multiselection
                   // therefore use records[0] to access the selected record
               }
        });

API 链接

评论中的其他内容:

看一下组合框的multiSelect属性。您将获得由定义的分隔符分隔的所有值,并且 select 事件将为您提供一个包含多个记录的记录数组。请注意, getValue() 只为您提供定义的 displayField,它是一个字符串,而不是记录本身。所以使用 iComboValue[0] 会给你第一个字符。应始终使用选定的事件访问选定的记录。但是您可以将它们存储在一个数组中以供以后使用,并用任何新的选择覆盖它。

于 2012-08-25T06:59:07.273 回答
10

您还可以使用:

var iComboValue = simpleCombo.getValue();
于 2012-08-26T13:09:46.473 回答
0

也许你应该试试这个

 // to get the combobox selected item outside the combo listener
        simpleCombo.on('change', function (combo, record, index) {

            alert(record);  // to get the selected item

            console.log(record);  // to get the selected item

        });
于 2014-05-12T09:04:47.147 回答