next
21 Apr 2009, 4:22 AM
Found a small combobox bug that prevents the DOM selected option to get selected in the transformed combobox.
initComponent: function() {
// ...
if(o.selected && !Ext.isEmpty(this.value, true)) {
this.value = value;
}
// ...
}
should be:
initComponent: function() {
// ...
if(o.selected && !Ext.isEmpty(value, true)) {
this.value = value;
}
// ...
}
initComponent: function() {
// ...
if(o.selected && !Ext.isEmpty(this.value, true)) {
this.value = value;
}
// ...
}
should be:
initComponent: function() {
// ...
if(o.selected && !Ext.isEmpty(value, true)) {
this.value = value;
}
// ...
}