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 : Grid - Autosizing Width Of Grid To Panel
var grid = new Ext.grid.GridPanel({
store: aStore,
columns: aColumnsDefinitionVar,
height:350,
title:'Some title',
region: "center",
viewConfig: {forceFit: true} // this is the option which will force the grid to the width of the containing panel
});





