0

嗨,我在 ExtJs 中有非常简单的下拉菜单,它在 ie8 及更高版本中运行良好,但在 ie7 中无法从列表中选择一个值。

如下图所示,当我按下 testAccount 时没有任何反应。

在此处输入图像描述

这是代码

 Ext.create('Ext.form.field.ComboBox', {
                renderTo: 'ddlAccount',
                value: '',
                disabled: false,
                id: 'cboAccount',
                displayField: 'name',
                valueField: 'id',
                width: 219,
                height: 22,
                store: accounts,
                queryMode: 'local',
                editable: false,
                triggerAction: 'all',
                typeAhead: false,
                allowBlank: false,
                hideLabel: true,
                tabIndex: 2
            });
4

0 回答 0