Thanks Christian! Your suggestion is right on. We found another solution
which also solved the issue. In the file TextUtil.js, we added the following
line which worked fine: 
text.getInputElement().scrollTop=text.getInputElement().scrollHeight;


_doSetSelection : function( text, start, length ) {
      text.setUserData( "selectionStart", start );
      text.setSelectionStart( start );
      text.setUserData( "selectionLength", length );
      text.setSelectionLength( length );
      text.getInputElement().scrollTop=text.getInputElement().scrollHeight;
    }
-- 
View this message in context: 
http://qooxdoo.678.n2.nabble.com/Textarea-vertical-scroll-issue-on-FireFox-tp5496580p5532865.html
Sent from the qooxdoo mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to