TextArea and cursor position ?
Unsolved
General and Desktop
-
How to make the cursor automatically move to the end of the text ?
import QtQuick 2.15 import QtQuick.Controls 2.15 import Gl_Constants 1.0 Item { property string report: cl_backend_report.backend_report_msg; anchors.fill: parent ScrollView { id: view anchors.fill: parent anchors.topMargin: 10 TextArea { text: report color: Gl.gl_text_color font.family: Gl.font_family font.pixelSize: Gl.font_size_norm; textFormat: Text.RichText readOnly: true selectByKeyboard: true selectByMouse: true background: Rectangle { color: Gl.gl_background_color border.color: Gl.gl_border_color } onTextChanged: { report.cursorPosition = report.length } } } }