⟩ Explain what is syntax for Extjs Button click event?
Ext.onReady(function() {
Ext.get('myButton').on('click', function(){
alert("You clicked the button");
});
});
Ext.onReady(function() {
Ext.get('myButton').on('click', function(){
alert("You clicked the button");
});
});
Tell me how to get record object from store?
Explain how we can apply pagination in grid panel?
Explain purpose of Load mask?
Explain purpose of renderer in grid panel?
Do you know how to get selection model used in a grid panel?
Explain how to stop editing a record?
Tell me how to start editing a record?
Tell me how to commit a record modification?
Explain how to get a value of textfield or combo box?
Explain extjs decode()?