Extjs scrolling a panel to a position -
hi have panel , want scroll particular postiton in panel how do it
var tabs= new ext.panel({ id:id, title:text, autoscroll:true, iconcls:'windowicon', closable:true, closeaction:'hide' });
set scrolltop property of panel's body number of pixels want scroll down:
// scroll body down 100 pixels. tabs.body.dom.scrolltop = 100;
Comments
Post a Comment