I\'m looking for an equivalent method to select a class element like this $(\".className\") in Jquery for ExtJS.
I understand that Ext.get() only takes in an id. Yo
I think you are looking for:
Ext.query(".className");
This method allows you to get elements by the given query string like jQuery does.
EDIT
var els=Ext.query(".className"), ret=[]; for(var i=0; i