TextEditor with both hor. & ver. scrollbars fail with nowrap
Posted: Wed Jun 04, 2014 7:03 pm
TextEditor with both horizontal & vertical scrollbars working without AutoWrap in the TextEditor
Hi,
I'm trying to get working scrollbars (both horizontal and vertical) on a TextEditor without autowrap enabled.
So in my XML file I have:
In above, the textwrapping is set to of as i should but I have only the vertical scrollbar and no way to scroll to the right side of the text...
So, I figured I maybe have to enclose it i a scrollgroup like:
So, now a get the horisontal scrollbar as well but i doesn't work and still is the right side of the text in the texteditor hidden?
What am I missing, how do get both scrollbars working without AutoWrap in the TextEditor?
Hi,
I'm trying to get working scrollbars (both horizontal and vertical) on a TextEditor without autowrap enabled.
So in my XML file I have:
Code: Select all
<virtgroup>
<texteditor id="myte" wrapmode="nowrap" fixedfont="true" scrollbar="yes" contents="exter your text here!"/>
</virtgroup>
So, I figured I maybe have to enclose it i a scrollgroup like:
Code: Select all
<scrollgroup freevert="false">
<virtgroup>
<texteditor id="myte" wrapmode="nowrap" fixedfont="true" scrollbar="yes" contents="exter your text here!"/>
</virtgroup>
</scrollgroup>
What am I missing, how do get both scrollbars working without AutoWrap in the TextEditor?