<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Editable Report Preview in application Builder in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Editable-Report-Preview-in-application-Builder/m-p/729331#M91171</link>
    <description>&lt;P&gt;Hello guys,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am using applciation builder to select name of report from the list box and its preview will be displayed&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;// 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 &amp;lt;&amp;lt; Get Selected;
	wList = Get Window List( Type( "Reports" ) );
	ReportNames = wList &amp;lt;&amp;lt; get window title;
	previewList = {};
	reportTitle = {};
	If( N Items( selectedReport ) &amp;gt; 0,
		abc = ReportPanel1 &amp;lt;&amp;lt; Child;
		abc &amp;lt;&amp;lt; Delete;
		For( j = 1, j &amp;lt;= N Items( wList ), j++,
			For( i = 1, i &amp;lt;= 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 &amp;lt;&amp;lt; Append( previewList[1] )
		);
		ReportPanel1 &amp;lt;&amp;lt; Set Title( Concat( "Report Preview/Print Reports/", reportTitle[1] ) );
	);
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;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).&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 02 Mar 2024 02:39:38 GMT</pubDate>
    <dc:creator>ComplexNerd</dc:creator>
    <dc:date>2024-03-02T02:39:38Z</dc:date>
    <item>
      <title>Editable Report Preview in application Builder</title>
      <link>https://community.jmp.com/t5/Discussions/Editable-Report-Preview-in-application-Builder/m-p/729331#M91171</link>
      <description>&lt;P&gt;Hello guys,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am using applciation builder to select name of report from the list box and its preview will be displayed&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;// 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 &amp;lt;&amp;lt; Get Selected;
	wList = Get Window List( Type( "Reports" ) );
	ReportNames = wList &amp;lt;&amp;lt; get window title;
	previewList = {};
	reportTitle = {};
	If( N Items( selectedReport ) &amp;gt; 0,
		abc = ReportPanel1 &amp;lt;&amp;lt; Child;
		abc &amp;lt;&amp;lt; Delete;
		For( j = 1, j &amp;lt;= N Items( wList ), j++,
			For( i = 1, i &amp;lt;= 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 &amp;lt;&amp;lt; Append( previewList[1] )
		);
		ReportPanel1 &amp;lt;&amp;lt; Set Title( Concat( "Report Preview/Print Reports/", reportTitle[1] ) );
	);
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;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).&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 02 Mar 2024 02:39:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Editable-Report-Preview-in-application-Builder/m-p/729331#M91171</guid>
      <dc:creator>ComplexNerd</dc:creator>
      <dc:date>2024-03-02T02:39:38Z</dc:date>
    </item>
    <item>
      <title>Re: Editable Report Preview in application Builder</title>
      <link>https://community.jmp.com/t5/Discussions/Editable-Report-Preview-in-application-Builder/m-p/729539#M91200</link>
      <description>&lt;P&gt;The report being displayed after appending into the Panel Box is a copy of the original report.&amp;nbsp; This is similar to creating a Journal.&amp;nbsp; In general JMP Platforms cannot have multiple views of the analysis that are all "live".&lt;/P&gt;</description>
      <pubDate>Sun, 03 Mar 2024 15:17:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Editable-Report-Preview-in-application-Builder/m-p/729539#M91200</guid>
      <dc:creator>danschikore</dc:creator>
      <dc:date>2024-03-03T15:17:25Z</dc:date>
    </item>
  </channel>
</rss>

