How to do the Javascript's document.getElementById('ID').scrollIntoView(true) in Qt TextArea element?
How to do the Javascript's document.getElementById('ID').scrollIntoView(true) in Qt TextArea element?
You should use something like:
myFlickableElement.contentY = ID.y
the TextArea content has
....
<p id='30'>30 here is the long text ....</p>
.....
or visually
....
30 here is the long text ....
....
how will be position into view by myFlickableElement.contentY = ID.y?
Last edited by kitgarong; 2012-02-03 at 15:12.