ExtJS 4: How can I get all grid columns in current order? -


when use grid.columns returns columns grid (visible or not), it's not in current order..

then tried grid.getview().getgridcolumns() , returned columns in current order, visible ones.

how can columns, visible , not visible, in current order?

you can try

grid.down('headercontainer').getgridcolumns(); 

returns visible , non-visible columns

grid.down('headercontainer').getvisiblegridcolumns(); 

returns visible columns


Comments

Popular posts from this blog

Android : Making Listview full screen -

javascript - Parse JSON from the body of the POST -

javascript - Chrome Extension: Interacting with iframe embedded within popup -