Gihan Lasita
Gihan Lasita

Reputation: 3055

How to get width and height of a div with extjs 4?

How to get width and height of a div with extjs 4?

Regards

Upvotes: 5

Views: 6892

Answers (1)

Richard A
Richard A

Reputation: 2100

Try this:


    Ext.get("divid").getWidth();  // Width 
    Ext.get("divid").getHeight(); // Height

Upvotes: 7

Related Questions