cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Register for our Discovery Summit 2024 conference, Oct. 21-24, where you’ll learn, connect, and be inspired.
Choose Language Hide Translation Bar
Abby_Collins14
Level III

How to place outline boxes side by side in New Window(), and how to add scrolling to a report that was a fit group

Hi all. I have the below new window script but am having trouble.

 

I would like the plots and tests to be in there own columns (after the data and summary are stacked in the same column). Also, the plots and tests are reports that were once "fit group" output, and they are rather long so I would like to add a vertical scroll instead of having my window be the entire length of the output.

 

Any ideas? Thanks!

csp = New Window( "Platform Example",
	V splitter box(Lineup Box(N Col(3),Outline Box( " Data",
		::box1 = V List Box(),
		
	),
	Outline Box( "Summary",
		::box2 = V List Box(),
		
	),
		Outline Box( "Totals",
		::box3 = V List Box(),
		
	),
	Outline Box( "plots",
		::box4 = V List Box()
			
			
		),
		Outline Box( "Tests",
		::box5 = V List Box()
			
			
		),

)));


::box1 << Append(data table(dtsubsets) << Get As Report) ;
::box2 << Append(data table("Summary") << Get As Report) ;
::box3 <<Append(data table("Totals") << Get As Report) ;
::box4 << Append(plots);
::box5 << append(tests);
1 REPLY 1
txnelson
Super User

Re: How to place outline boxes side by side in New Window(), and how to add scrolling to a report that was a fit group

You can build the output to be of any format you want.  JMP provides the Display Objects that allow you to define scroll areas, display columns, etc..

 

Look int the Scripting Guide and the Scripting Index for Display Tree documentation and for Display Objects.

Jim