Hi,
i have some trouble with a non scrolling grid (grid3), i already use autoScroll:true but, doesnt work.
the structure:
the test:
- viewpoint
- panel
- panel
- table
- grid2
- grid3
http://jsfiddle.net/bCHrW/2/
hope someone can help![]()
Hi,
i have some trouble with a non scrolling grid (grid3), i already use autoScroll:true but, doesnt work.
the structure:
the test:
- viewpoint
- panel
- panel
- table
- grid2
- grid3
http://jsfiddle.net/bCHrW/2/
hope someone can help![]()
Try to set flex config for Panel.panel1 to force it occupy the remaining space of center region.
Code:Panel.panel1 = Ext.create('Ext.Panel',{ flex: 1, layout:'fit', viewConfig: {forceFit: true}, items:[Grid.list3] });
Try to set flex config for Panel.panel1 to force it occupy the remaining space of center region.
Code:Panel.panel1 = Ext.create('Ext.Panel',{ flex: 1, layout:'fit', viewConfig: {forceFit: true}, items:[Grid.list3] });
thx, this solves the problem with the space, but the scrolling problem still exist.![]()
I add flex: 1 to the config of Panel.panel1 and vertical scrollbar appear on the right side of Grid.list3. You can check it on jsFiddle: http://jsfiddle.net/bCHrW/8/. BTW, I am using Chrome 20.