Bhumika
Bhumika

Reputation: 1

Parameters of combo box change event in ext js

Which parameters i should pass in combo box select event in ext js?

Upvotes: 0

Views: 3852

Answers (1)

Tommi
Tommi

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 box
  • record : Ext.data.Record - The data record returned from the underlying store
  • index : Number - The index of the selected item in the dropdown list

Upvotes: 3

Related Questions