2

我在其他地方看到过类似的问题没有得到解答。我想在一列中有一个组合框,里面有两个选项(ASC,DEC)。我希望它显示在每一行中,或者至少在未选中时显示其值。

我知道在每一行中渲染一个组合框不是一个“好主意”,但在这种情况下,我知道我最多会有大约 20 行,所以这应该不是什么大问题。如果无法做到这一点,我希望从组合框中显示选定的值。目前,当我单击一行时,我只会出现组合框,这没有多大意义,因为除非你正在做,否则你看不到你的选择。解决方案是什么?

另外,我想摆脱单击一行时弹出的更改和取消按钮,我只想能够使用组合框编辑单元格,并让它自动更改/保存。

4

2 回答 2

8

您可以为combo.

然后应该在启动时渲染它。

使用单元格到rendererrender的网格中。遵循一个可以在 API 代码框中张贴的工作示例。displayFieldcombo

工作JSFiddle

Ext.create('Ext.data.Store', {
    storeId: 'simpsonsStore',
    fields: ['name', 'email', 'phone', 'id'],
    data: {
        'items': [{
            "name": "Lisa",
            "email": "lisa@simpsons.com",
            "phone": "555-111-1224",
            "id": 0
        }, {
            "name": "Bart",
            "email": "bart@simpsons.com",
            "phone": "555-222-1234",
            "id": 1
        }, {
            "name": "Homer",
            "email": "home@simpsons.com",
            "phone": "555-222-1244",
            "id": 2
        }, {
            "name": "Marge",
            "email": "marge@simpsons.com",
            "phone": "555-222-1254",
            "id": 3
        }]
    },
    proxy: {
        type: 'memory',
        reader: {
            type: 'json',
            root: 'items'
        }
    }
});

// the renderer. You should define it within a namespace
var comboBoxRenderer = function(combo) {
    return function(value) {
        var idx = combo.store.find(combo.valueField, value);
        var rec = combo.store.getAt(idx);
        return (rec === null ? '' : rec.get(combo.displayField));
    };
}
// the combo store
var store = new Ext.data.SimpleStore({
    fields: ["value", "text"],
    data: [
        [1, "Option 1"],
        [2, "Option 2"]
    ]
});
// the edit combo
var combo = new Ext.form.ComboBox({
    store: store,
    valueField: "value",
    displayField: "text"
});


// demogrid
Ext.create('Ext.grid.Panel', {
    title: 'Simpsons',
    store: Ext.data.StoreManager.lookup('simpsonsStore'),
    columns: [{
        header: 'Name',
        dataIndex: 'name',
        editor: 'textfield'
    }, {
        header: 'Email',
        dataIndex: 'email',
        flex: 1,
        editor: {
            xtype: 'textfield',
            allowBlank: false
        }
    }, {
        header: 'Phone',
        dataIndex: 'phone'
    }, {
        header: 'id',
        dataIndex: 'id',
        editor: combo,
        renderer: comboBoxRenderer(combo)
    }],
    selType: 'cellmodel',
    plugins: [
        Ext.create('Ext.grid.plugin.CellEditing', {
            clicksToEdit: 1
        })
    ],
    height: 200,
    width: 400,
    renderTo: Ext.getBody()
});
于 2012-09-07T13:39:43.233 回答
1
{
    header: 'Your header',
    dataIndex: 'your Column',
    editor: {
        xtype: 'combobox',
        store: yourStore,
        queryMode: 'local',
        displayField: 'Your Display..',
        valueField: 'Your Value'
    }
于 2013-01-28T07:13:11.980 回答