Hi all,
I'm looking for a JSL function which allows the user to change values of a (Data) Table Box, similar to the function Text Edit Box just in a tabular form. Thanks for your help!
The String Col Edit Box() might be what you are looking for
Names Default To Here( 1 );
New Window( "Example",
Table Box(
scb = String Col Edit Box(
"Strings",
{"The", "quick", "brown", "fox", "jumps", "over", "the", "lazy", "dog"}
)
)
);
The String Col Edit Box() might be what you are looking for
Names Default To Here( 1 );
New Window( "Example",
Table Box(
scb = String Col Edit Box(
"Strings",
{"The", "quick", "brown", "fox", "jumps", "over", "the", "lazy", "dog"}
)
)
);
Thanks a lot. That's exactly what I was looking for.