I am new in Ext JS environment. I have a need to make Ext JS grid responsive.
I want to make stretchable grid across the width of the browse window.
Below is my grid code:
Ext.create('Ext.grid.Panel', {
title: 'This is Stretchable Grid',
height: 250,
width: 500,
renderTo: Ext.getBody()
});
Please tell me having any idea to do it. Thanks.
Tarun Kumar
15-Apr-2016Ext.create('Ext.grid.Panel', { title: 'This is Stretchable Grid', height: 250 , width: '100%', renderTo: Ext.getBody() });