cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
See how to use JMP Live to centralize and share reports within groups. Webinar with Q&A April 4, 2pm ET.
Choose Language Hide Translation Bar
View Original Published Thread

Searching for JSL function to obtain an interactive (Data) Table Box

RMSEBird223
Level II

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
txnelson
Super User


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"}
		)
	)
);

txnelson_0-1718355337295.png

 

Jim

View solution in original post

2 REPLIES 2
txnelson
Super User


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"}
		)
	)
);

txnelson_0-1718355337295.png

 

Jim
RMSEBird223
Level II


Re: Searching for JSL function to obtain an interactive (Data) Table Box

Thanks a lot. That's exactly what I was looking for.