cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Instantly extract effect sizes, F-ratios, and FDR-adjusted p-values from your models with the Calculate Effects Sizes extension, available now in the JMP Marketplace!
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • Your voice matters! Tell us how you prefer to receive JMP updates, so we can tailor our communication to your needs. Take short survey.

Discussions

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

Editable Report Preview in application Builder

Hello guys,

 

I am using applciation builder to select name of report from the list box and its preview will be displayed 

// This function will run on selection of each item in list box
reportPreviewPrint = Function( {thisBox},
	{Default Local}, 

//Get selected report name from the list box of open report names
	selectedReport = ListPrintReport << Get Selected;
	wList = Get Window List( Type( "Reports" ) );
	ReportNames = wList << get window title;
	previewList = {};
	reportTitle = {};
	If( N Items( selectedReport ) > 0,
		abc = ReportPanel1 << Child;
		abc << Delete;
		For( j = 1, j <= N Items( wList ), j++,
			For( i = 1, i <= N Items( selectedReport ), i++,
				If( ReportNames[j] == selectedReport[i],
					Insert Into( previewList, wList[j] );
					Insert Into( reportTitle, ReportNames[j] );
				)
			)
		);

// After going through all open reports and finding the selected report i display it in the panel box
		If( !Is Empty( previewList ),
			ReportPanel1 << Append( previewList[1] )
		);
		ReportPanel1 << Set Title( Concat( "Report Preview/Print Reports/", reportTitle[1] ) );
	);
);

 

My question is there there a way to display this report such that any changes made on this (the panelBox is enabled) will affect the original report (like axis changes or backgound color or legend etc). 

1 ACCEPTED SOLUTION

Accepted Solutions

Re: Editable Report Preview in application Builder

The report being displayed after appending into the Panel Box is a copy of the original report.  This is similar to creating a Journal.  In general JMP Platforms cannot have multiple views of the analysis that are all "live".

View solution in original post

1 REPLY 1

Re: Editable Report Preview in application Builder

The report being displayed after appending into the Panel Box is a copy of the original report.  This is similar to creating a Journal.  In general JMP Platforms cannot have multiple views of the analysis that are all "live".

Recommended Articles