Hi All,
I'm working on some JSL where I generate a global data filter (not local to a single platform), and this filter resides within a panel box.
The issue I'm having is that due to the many columns in my data table, the data filter shows up with its default size settings, and it's much larger than I'd like. Using the Semiconductor Capability.jmp file, it looks something like this (default):
But, I'd really like it to show up in a size like this (ideally modified via JSL):
I was thinking of trying to force it via the list box NLines() command by accessing the Tree structure, but that didn't work. I also tried setting the height of the panel box or data filter platform using <<Height(), and that doesn't work either. Also tried the <<Set Max Size command for the DisplayBox, but that doesn't work.
Is there a way to force the Data Filter Outline Box or Panel Box that it resides in (in my script) to be a certain size?
The code I'm using is something like this:
GDFLogic = V List Box( dt << Data Filter );
GDFPanelBox = Panel Box( "Global Data Filter", GDFLogic );
The GDFLogic variable references the data filter wrapped in a VList Box(), and then the GDFPanelBox references back to the display box of GDFLogic. The PanelBox is within a new window that pops up when you run the JSL.
So far, I none of the options I've tried have worked out, and even manually resizing the global data filter and then trying to save the script to a script window doesn't provide any resize code that you could use or understand how to resize the data filter list box.
Hopefully this description makes sense. Thanks for any help and input on solving this.
Thanks!,
DS