cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • JMP will suspend normal business operations for our Winter Holiday beginning on Wednesday, Dec. 24, 2025, at 5:00 p.m. ET (2:00 p.m. ET for JMP Accounts Receivable).
    Regular business hours will resume at 9:00 a.m. EST on Friday, Jan. 2, 2026.
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.

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