Lev Savranskiy
Lev Savranskiy

Reputation: 430

How to add item to Extjs panel at exact position

I am adding an item to Extjs panel.

this.add(new_el);
this.doLayout();

It works fine. but in some cases I have to add {new_el} at exact position, not last.

For example penultimate one.

Can't find easy method in Extjs 3.2.1

Upvotes: 10

Views: 20716

Answers (1)

vajrakumar
vajrakumar

Reputation: 758

You should use insert() instead of add().

Mypanel.insert(0,cmp1);
Mypanel.insert(4,cmp2);

Upvotes: 16

Related Questions