-
8 Mar 2012 8:50 AM #1Sencha - Community Support Team
- Join Date
- Nov 2007
- Location
- Helsingborg, Sweden
- Posts
- 2,460
- Vote Rating
- 56
[4.1B3] Scrolling a buffered grid is broken
[4.1B3] Scrolling a buffered grid is broken
These 2 methods cannot have been run ever.
Bold rows above should be lockedView.el.child. That gives us a DOM node, so row under should not do ".dom."Code:onLockedViewScroll: function() { var me = this, lockedView = me.lockedGrid.getView(), normalView = me.normalGrid.getView(), normalTable, lockedTable; normalView.el.dom.scrollTop = lockedView.el.dom.scrollTop; if (me.store.buffered) { lockedTable = lockedView.child('table', true); normalTable = normalView.child('table', true); normalTable.dom.style.top = lockedTable.dom.style.top; } }, onNormalViewScroll: function() { var me = this, lockedView = me.lockedGrid.getView(), normalView = me.normalGrid.getView(), normalTable, lockedTable; lockedView.el.dom.scrollTop = normalView.el.dom.scrollTop; if (me.store.buffered) { lockedTable = lockedView.child('table', true); normalTable = normalView.child('table', true); lockedTable.dom.style.top = normalTable.dom.style.top; } },
-
8 Mar 2012 4:08 PM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,714
- Vote Rating
- 438
We will look into it.
Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.
Looks like we cannot reproduce this. Please provide another test case to reproduce this issue.


Reply With Quote