VLWeb List Horizontal Scrolling
Posted: Wed Jan 10, 2018 7:41 am
When using a List in VL Web with one Column (STD_STRNG) that has "ColumnUnits" set to "Proportion" and "ColumnWidth" set to "1", should the list horizontally scroll when the value of STD_STRNG is longer than the list?
Renders this
So the text is cut off and not scrolling.
Am I missing a property somewhere? Should the list scroll horizontally?
Thanks,
Joe
Code: Select all
begin_com role(*EXTENDS #PRIM_WEB)
define_com class(#PRIM_LIST) name(#List1) displayposition(1) left(64) parent(#COM_OWNER) tabposition(1) top(56)
define_com class(#PRIM_LIST.String) name(#ColumnSTD_STRNG1) columnwidth(1) displayposition(1) parent(#List1) source(#STD_STRNG) columnunits(Proportion)
evtroutine handling(#Com_owner.Initialize)
#STD_STRNG := "this is some really really really long text. Yep it is still going. Are we there yet? Nope, keep going and going and going ...."
add_entry to_list(#List1)
endroutine
end_com
Am I missing a property somewhere? Should the list scroll horizontally?
Thanks,
Joe