Ext-JS Question:

Download Job Interview Questions and Answers PDF

Suppose to show our message when any paragraph in our test page is clicked, what is the extjs code on paragraph click?

Ext JS Interview Question
Ext JS Interview Question

Answer:

Ext.onReady(function() {
Ext.select('p').on('click', function() {
alert("You clicked a paragraph");
});
});

or

Ext.onReady(function() {
var paragraphClicked = function() {
alert("You clicked a paragraph");
}
Ext.select('p').on('click', paragraphClicked);
});

Download Ext JS Interview Questions And Answers PDF

Previous QuestionNext Question
Explain what is use of Ext.onReady() function?Explain the extjs library files to include in JSP page?