- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Searching for JSL function to obtain an interactive (Data) Table Box
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!
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Searching for JSL function to obtain an interactive (Data) Table Box
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"}
)
)
);
Jim
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Searching for JSL function to obtain an interactive (Data) Table Box
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"}
)
)
);
Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Searching for JSL function to obtain an interactive (Data) Table Box
Thanks a lot. That's exactly what I was looking for.