취소
다음에 대한 결과 표시 
표시  만  | 다음에 대한 검색 
다음을 의미합니까? 

Discussions

Solve problems, and share tips and tricks with other JMP users.
언어 선택 변환 막대 숨기기
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 채택된 솔루션

채택된 솔루션
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

원본 게시물의 솔루션 보기

2 응답 2
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
Abby_Collins14
Level III

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

Will do, thanks for the resources!

추천 글