DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Extjs : Viewport - Adding Auto Scroll To Viewport Panel
How to add auto scroll to the center panel in a viewport layout
Ext.onReady(function(){
new Ext.Viewport({
forceFit: true,
hideMode: "offsets",
layout: "border",
defaults: {autoScroll: true},
items: [,
{
region: "north",
contentEl: "north-panel-container-id",
},
{
region: "center",
contentEl: "center-panel-container-id",
autoScroll: true
},
]
})
});





