Reputation: 3055
How to get width and height of a div with extjs 4?
Regards
Upvotes: 5
Views: 6892
Reputation: 2100
Try this:
Ext.get("divid").getWidth(); // Width Ext.get("divid").getHeight(); // Height
Upvotes: 7