cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Have your say in shaping JMP's future by participating in the new JMP Wish List Prioritization Survey
Choose Language Hide Translation Bar
RMSEBird223
Level II

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
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.