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 use Accelerated Life Testing (ALT) to evaluate reliability. Register for June 5 webinar, 2pm US Eastern Time.

Discussions

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

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