cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

Discussions

Solve problems, and share tips and tricks with other JMP users.
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. 

Recommended Articles