61⟩ Tell me what is use of combo select event function?
To get the selected value from a combo.using getvalue();
var selectedComboValue = mycombo1.getValue();
“Ext JS frequently Asked Questions in various Ext-JS job Interviews by interviewer. The set of questions here ensures that you offer a perfect answer posed to you. So get preparation for your new job hunting”
To get the selected value from a combo.using getvalue();
var selectedComboValue = mycombo1.getValue();
using config option as
emptyClass : 'emptycss', where emptycss is a css classname
var grid = new Ext.grid.GridPanel({
store: new Ext.data.JsonStore({
[...]
listeners: {
load: this.onLoadSuccess.crateDelegate(this),
exception: this.onLoadException.createDelegate(this)
}
}),
onLoadSuccess: function () {
// success
},
onLoadException: function () {
// error
},
[...]
}
using hidden : true
store, columnmodel, id, width,height
46. how to disable menu option for header in columnModel?
using menuDisabled: true