Explain how to access Dom element using EXTJS?

Submitted by: Administrator
The Element API is fundamental to the entire Ext library.
Using traditional Javascript, selecting a DOM node by ID is done like this:
var myDiv = document.getElementById('myDiv');
Using Extjs:
Ext.onReady(function() {
var myDiv = Ext.get('myDiv');
});
Submitted by: Administrator

Read Online Ext-JS Job Interview Questions And Answers