Reputation: 1
Which parameters i should pass in combo box select event in ext js?
Upvotes: 0
Views: 3852
Reputation: 8608
Quoted from ExtJS 3.3.1 API Documentation:
select: (Ext.form.ComboBox combo, Ext.data.Record record, Number index)
Fires when a list item is selected. Listeners will be called with the following arguments:
combo : Ext.form.ComboBox
-
This combo boxrecord : Ext.data.Record
-
The data record returned from the underlying storeindex : Number
-
The index of the selected item in the dropdown listUpvotes: 3