如何使用ExtJs将多选组合框实现为Ext.FormPanel的一部分?我一直在寻找,但似乎找不到与最新版本的ExtJs兼容的解决方案(this question与之相似,但没有有效的/当前的解决方案)。

这是我到目前为止的内容,但这是一个选择:

new Ext.FormPanel({
    labelAlign: 'top',
    frame:      true,
    width:      800,
    items: [{
        layout: 'column',
        items:[{
            columnWidth: 1,
            layout:      'form',
            items: [{
                xtype:          'combo',
                fieldLabel:     'Countries',
                name:           'c[]',
                anchor:         '95%',
                allowBlank:     false,
                typeAhead:      true,
                triggerAction: 'all',
                lazyRender:     true,
                mode:           'local',
                store:          new Ext.data.ArrayStore({
                    id:     0,
                    fields: ['myId', 'displayText'],
                    data: [
                        ["CA", 'Canada'],
                        ["US", 'United States'],
                        ["JP", 'Japan'],
                    ]
                }),
                valueField:   'myId',
                displayField: 'displayText'
            }]
        }]
    }]
}).render(document.body);

我没有在documentation中看到任何表明支持此参数的参数。我还找到了thisthis,但是我只能让它们与Ext 2一起使用。

最佳答案

查看SuperBoxSelect扩展名。

关于javascript - 具有ExtJ的多选组合框,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2979989/

10-09 17:01