livecode - How do I limit the number of columns of a basic table field? -
i have basic table field.
need 3 columns displays more.
how limit three?
, how set width of columns?
set tabstops of fld "data" 100,0,150,0,0
will hide column 2 , 4, 5, 6, ..., n.
if want hide column, set it's width 0. if last parameter 0 rest of columns not visible, , it'll missing vertical line of last visible column. if want vertical line after last field, add additional 0 [set ... 100,0,200,0,0]
Comments
Post a Comment