I am using C++ and QML to create a nice interface. I would like to have a "console view", where plenty to text is printed through time. However, when the text of a text item or webview content grows, the view does not "scroll down".

How can I make the text on the bottom of the text/webview item always stay visible ?

I have tried playing with flickable and the_webview.evaluateJavaScript + window.scrollTo , but I could not get them to do what I want. This seems a fairly simple piece of UI, but I am having serious troubles to do it with QML.

Thanks for you answer.

link|improve this question

50% accept rate
feedback

3 Answers

Maybe you should consider using a ListView and have the messages as items in the view. Then you could use ListView::positionViewAtEnd.

link|improve this answer
feedback

Yeah I'd use a Flickable containing a Text object. Whenever you add text to the Text, check its paintedHeight, and adjust the Flickable's contentY if it's got any bigger.

link|improve this answer
This inspired my final solution: – rodrigob Mar 22 '11 at 19:14
feedback

funkybro answers inspired my final solution:

function scroll_to_bottom() {

flickabe_item.contentY = 
      Math.max(0,  webview_item.height - flickabe_item.height)
return;

}

Thanks !

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.