Ext Js Get Selected ComboBox Value
Posted On Saturday, 17th December, 2011 by Daniel. Last updated: December 20th, 2011
Small code snippet illustrating getting the selected value from an Ext Js ComboBox.
This example has been tested with Ext Js 4
var combo = Ext.create('Ext.form.field.ComboBox', {
...
listeners: {
'select':function(selected){ alert(selected.value); }
}
...
});