-
3 Mar 2011 3:10 AM #1
how to update scroller
how to update scroller
Hi,
i have dynamically growing/shrinking textareas in a formpanel. The problem is that the scroller of the surrounding formpanel does not get updated correct.
how can i update the scroller?
thanks!
Chris
-
4 Mar 2011 1:30 AM #2
this is my grow/shrink function and i call it on keyup for the textarea.
now i think i have to update the bounds of the scroller of the textareafield surrounding formpanel...Code:utils.grow = function(ta) { var textarea = ta.fieldEl.dom; textarea.style.height = textarea.style.lineHeight; ta.fieldEl.setHeight(textarea.scrollHeight); ta.setHeight(textarea.scrollHeight); }
(the scroller is only broken if the textarea gets higher than one screenheight)
-
4 Mar 2011 1:58 AM #3
Hello.
I'm not sure, but maybe if you do a doLayout() or doComponentLayout() in the surrounding object...
Regards,
FranV
-
4 Mar 2011 2:29 AM #4
i tried that already, it is not working, but thanks!
-
7 Mar 2011 1:39 AM #5
-
7 Mar 2011 8:25 PM #6
I ran into an issue with a dataview when it was scrolled down towards the bottom then if you refreshed the data the scroll didn't go to the top so you didn't see anything after that (because it's stuck at the top). This is what I had to do because I didn't see an api to reset the scroll:
Inspect around the formpanel dom for something with the above -webkit-tranform. Hope this helps.Code:var scrollEl = this.dataView.scrollEl; Ext.DomHelper.applyStyles(scrollEl, "-webkit-transform: translate3d(0px, 0px, 0px)");
-
17 Aug 2011 3:43 PM #7
Similar Threads
-
Dual lists with linked scrolling - scroller.setOffset and scroller.setUseCssTransform
By samHassan in forum Sencha Touch 1.x: DiscussionReplies: 1Last Post: 22 Dec 2010, 6:47 AM -
Where is scroller.parentSize?
By dbottillo in forum Sencha Touch 1.x: DiscussionReplies: 1Last Post: 3 Nov 2010, 5:10 AM -
[FIXED-104] Carousel.add/dolayout doesn't update scroller bounds
By Iumentum in forum Sencha Touch 1.x: BugsReplies: 2Last Post: 28 Jun 2010, 1:57 PM -
this.scroller
By quintino in forum Ext 3.x: Help & DiscussionReplies: 5Last Post: 6 Apr 2010, 12:38 PM -
Tab scroller
By bkraut in forum Ext 2.x: Help & DiscussionReplies: 1Last Post: 16 Dec 2007, 9:23 AM


Reply With Quote