In order to resize a grid when the browser window changes its size, you can subscribe to the window.onresize
event using jQuery.
Here is an example:
$(window).resize(function() {
$(#grid).height($(window).height());
$(#grid).width($(window).width());
});
If you want to do the same using ExtJs
framework, please see this link
http://myextjs.blogspot.com/2011/11/resize-window-resize-grid.html[^].