-
26 Nov 2011 8:26 AM #1
Grid: vertical scrollbar lost
Grid: vertical scrollbar lost
Hello,
I have a bug very strange. The more weird about it is that I cannot reproduce it everytime. I loose my vertical scrolle bar enabling me to see all the rows. It happens 1 time by 30 maybe, when i use order, filter, paging. I given 2 screenshots to really understand what happen.
I'm interested to know if anyone already had this problem, even if it's many month after I today?
You can see the lines don't move, but the scrollbar yes
scroll1.pngscroll2.png
ps: I didn't change or have any css that can be in conflict
Thanks!
-
26 Nov 2011 8:40 AM #2
which version of ext js are you using?
in 4.1 (and the beta as well), there will be a lot of changes on the layout engine, so it makes sense to wait for that version and see, if the problem is already resolved there.
otherwise we do need a reproduceable testcase or the dev team has not a good chance to find the issue. tell me if you want to get this topic to the bugs section (need the version info!).
-
26 Nov 2011 2:07 PM #3
Yes, AFAIK the native scrolling will be back in 4.1 so if you can wait, wait for that version.
Jozef Sakalos, aka Saki
A lot of valuable info at:
Saki's Extensions and Plugins
Saki's Extensions and Plugins Docs
Saki's Examples, Latest: Grid in Card Layout
Saki's Blog, Featured: Writing a Big Application in Ext, Latest: Grid MultiSearch Plugin Video
-
27 Nov 2011 11:57 PM #4
Hello,
Yes , I would like to put it in the bugs section, I'll try to give more information:
Version:
I succeded to reproduce the bug in the version 4.0.6 and 4.0.7
The bug:
It happen when we pass from a state to another in the grid:
* when we have more rows than the given pageSize
* to the state where we have less rows than the given pageSize
It happens indifferently when we use the order/filter/paging,
Indifferently when we stress the system or not
--> when we lost the scrollbar, we cannot have it again exept in refreshing the page
Thanks a lot, especially if somebody find an answer
-
27 Nov 2011 11:59 PM #5
-
28 Nov 2011 1:54 AM #6
Unfortunately, I cannot tell you an exact day of 4.1 release - you can contact developers if they can tell you more.
Anyway, I'm moving this thread to Bugs.Jozef Sakalos, aka Saki
A lot of valuable info at:
Saki's Extensions and Plugins
Saki's Extensions and Plugins Docs
Saki's Examples, Latest: Grid in Card Layout
Saki's Blog, Featured: Writing a Big Application in Ext, Latest: Grid MultiSearch Plugin Video
-
28 Nov 2011 3:30 AM #7
an override is provided in the open discussion forums:
http://www.sencha.com/forum/showthre...l=1#post681020
it would be nice, if you can test it to gather infos for the dev team.
-
15 Dec 2011 12:56 PM #8
Problem Vertical Scrollbar
Problem Vertical Scrollbar
Pantallazo.png
I have a problemwith vertical scrollbar, shown outside the Tab Panel.
Please, Thank you for your help.
CODE:
Ext.onReady(function() {
Ext.create('Ext.window.Window', {
width: 500,
height: 300,
title: 'Servicio Tecnico',
maximizable: true,
bodyStyle: 'background:#FFF',
scroll:true,
autoScroll: true,
layout: 'anchor',
items: [{
xtype: 'tabpanel',
activeTab: 0,
items: [{
xtype: 'panel',
title: 'Tab 1',
items: [{
xtype: 'container',
height: 204,
items:[{
xtype: 'datefield',
fieldLabel: 'Label',
anchor : '100%'
},{
xtype: 'datefield',
fieldLabel: 'Label',
anchor : '100%'
},{
xtype: 'datefield',
fieldLabel: 'Label',
anchor : '100%'
},{
xtype: 'datefield',
fieldLabel: 'Label',
anchor : '100%'
},{
xtype: 'datefield',
fieldLabel: 'Label',
anchor : '100%'
},{
xtype: 'datefield',
fieldLabel: 'Label',
anchor : '100%'
}]
}]
},{
xtype: 'panel',
title: 'Tab 2'
}]
}]
}).show();
});
-
15 Dec 2011 2:06 PM #9
You don't have a bug in the Ext framework so this is not the right discussion forum. You should really ask your question in one of the following:I have a problemwith vertical scrollbar, shown outside the Tab Panel.
Ext 4.x Q and A:
http://www.sencha.com/forum/forumdis...87-Ext-Q-amp-A
Ext 4.x Discussion:
http://www.sencha.com/forum/forumdis...Ext-Discussion
That said your code should look something like:
Ask any further layout questions on one of the forums listed above. Oh, and welcome to the discussion forums.Code:Ext.onReady(function() { Ext.create('Ext.window.Window', { width: 500, height: 300, title: 'Servicio Tecnico', maximizable: true, bodyStyle: 'background:#FFF', layout: 'fit', items: [{ xtype: 'tabpanel', activeTab: 0, items: [{ xtype: 'panel', title: 'Tab 1', layout: 'anchor', autoScroll: true, bodyStyle: 'padding: 10px;', items: [{ xtype: 'datefield', fieldLabel: 'Label', anchor : '100%' },{ xtype: 'datefield', fieldLabel: 'Label', anchor : '100%' },{ xtype: 'datefield', fieldLabel: 'Label', anchor : '100%' },{ xtype: 'datefield', fieldLabel: 'Label', anchor : '100%' },{ xtype:'datefield', fieldLabel: 'Label', anchor : '100%' },{ xtype: 'datefield', fieldLabel: 'Label', anchor : '100%' }] },{ xtype: 'panel', title: 'Tab 2' }] }] }).show(); });
-
15 Dec 2011 10:14 PM #10
Thank you for reporting this bug. We will make it our priority to review this report.


Reply With Quote
