RDMLX Multiline Textbox in Table
Posted: Tue Jul 17, 2012 6:23 pm
I have a Table with a column of textboxes. The column is defined as
#COM_OWNER.Set_Table Name(Provs) Col_N(4) Col_Name(Notes) Col_Width(Fill) Layout_Height(fit)
The table row is added as
#x += 1
#TableRow := 'Provs.Row%' + #x.AsString
#COM_OWNER.Set_Textbox Name(#TableRow + '.Notes') Value(#SPRCMT.RightTrim) Border_Thickness(1) Multiline(true)
If click on an empty cell and start to type the inut caret immediatly shoots up a line and I can only see the bottom couple of pixels of each letter I type and the blinking caret. When I exit the box I can see part of the red squiggle (that indicates a spelling error?).
This also happens if the cell contains a small amount of data, eg 'Fred' - touch the cell and the caret sits next to the 'd', hit the keyboard and the text shoots up and mostly out of site.
If the cell is preloaded (from another function) with sufficient text to force it to display more than one line then it behaves when inserting but slides up a line when adding text at the end (although you still see it because of the extra lines.
Is there some settin or combination I have missed. It is very close o doing what I want.
#COM_OWNER.Set_Table Name(Provs) Col_N(4) Col_Name(Notes) Col_Width(Fill) Layout_Height(fit)
The table row is added as
#x += 1
#TableRow := 'Provs.Row%' + #x.AsString
#COM_OWNER.Set_Textbox Name(#TableRow + '.Notes') Value(#SPRCMT.RightTrim) Border_Thickness(1) Multiline(true)
If click on an empty cell and start to type the inut caret immediatly shoots up a line and I can only see the bottom couple of pixels of each letter I type and the blinking caret. When I exit the box I can see part of the red squiggle (that indicates a spelling error?).
This also happens if the cell contains a small amount of data, eg 'Fred' - touch the cell and the caret sits next to the 'd', hit the keyboard and the text shoots up and mostly out of site.
If the cell is preloaded (from another function) with sufficient text to force it to display more than one line then it behaves when inserting but slides up a line when adding text at the end (although you still see it because of the extra lines.
Is there some settin or combination I have missed. It is very close o doing what I want.