Thank you for reporting this bug. We will make it our priority to review this report.
Selecting combobox item with down arrow on keyboard
Selecting combobox item with down arrow on keyboard
I found a bug on selecting a combobox item with arrows.
1. Type 'al'. This show the list options 'Alabama' and 'Alaska' in a dropdown list.
2. Try to select 'Alabama' with the down arrow on your keyboard. You can't!Code:
// The data store containing the list of states
var states = Ext.create('Ext.data.Store', {
fields: ['abbr', 'name'],
data : [
{"abbr":"AL", "name":"Alabama"},
{"abbr":"AK", "name":"Alaska"},
{"abbr":"AZ", "name":"Arizona"}
//...
]
});
// Create the combo box, attached to the states data store
Ext.create('Ext.form.ComboBox', {
fieldLabel: 'Choose State',
store: states,
queryMode: 'local',
displayField: 'name',
valueField: 'abbr',
renderTo: Ext.getBody()
});
Selecting combobox item with down arrow on keyboard
Aucun commentaire:
Enregistrer un commentaire