cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • See how to access JMP Marketplace - and - find, create & share add-ins to extend your JMP. Watch video.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
joh13213
Level II

Data Table Panel Size Adjustments JSL

Currently using JMP19.  Is there any way to script panel size adjustments for JMP data tables?  I know I can manually adjust the panel sizes here, but I'm wondering if there's a way to automate it?  Embedded script names aren't shown fully in the left panel.  Thanks!

1 ACCEPTED SOLUTION

Accepted Solutions
jthi
Super User

Re: Data Table Panel Size Adjustments JSL

DataBrowserBox object doesn't seem to have any messages you could use -> you can explore the displaybox structure of the datatable by using Window(dt) << get xml. From that you can get some ideas what you can maybe manipulate to change the width (these can mess some things up, just know that)

Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
wait(1);//demo purposes
Window(dt)[ListBoxBox(1)] << Set Width(300);

There might also be splitter box you could use

-Jarmo

View solution in original post

1 REPLY 1
jthi
Super User

Re: Data Table Panel Size Adjustments JSL

DataBrowserBox object doesn't seem to have any messages you could use -> you can explore the displaybox structure of the datatable by using Window(dt) << get xml. From that you can get some ideas what you can maybe manipulate to change the width (these can mess some things up, just know that)

Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
wait(1);//demo purposes
Window(dt)[ListBoxBox(1)] << Set Width(300);

There might also be splitter box you could use

-Jarmo

Recommended Articles