<?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 How to place outline boxes side by side in New Window(), and how to add scrolling to a report that was a fit group in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-place-outline-boxes-side-by-side-in-New-Window-and-how-to/m-p/803689#M98083</link>
    <description>&lt;P&gt;Hi all. I have the below new window script but am having trouble.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;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.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any ideas? Thanks!&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;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 &amp;lt;&amp;lt; Append(data table(dtsubsets) &amp;lt;&amp;lt; Get As Report) ;
::box2 &amp;lt;&amp;lt; Append(data table("Summary") &amp;lt;&amp;lt; Get As Report) ;
::box3 &amp;lt;&amp;lt;Append(data table("Totals") &amp;lt;&amp;lt; Get As Report) ;
::box4 &amp;lt;&amp;lt; Append(plots);
::box5 &amp;lt;&amp;lt; append(tests);&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 04 Oct 2024 21:00:29 GMT</pubDate>
    <dc:creator>Abby_Collins14</dc:creator>
    <dc:date>2024-10-04T21:00:29Z</dc:date>
    <item>
      <title>How to place outline boxes side by side in New Window(), and how to add scrolling to a report that was a fit group</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-place-outline-boxes-side-by-side-in-New-Window-and-how-to/m-p/803689#M98083</link>
      <description>&lt;P&gt;Hi all. I have the below new window script but am having trouble.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;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.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any ideas? Thanks!&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;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 &amp;lt;&amp;lt; Append(data table(dtsubsets) &amp;lt;&amp;lt; Get As Report) ;
::box2 &amp;lt;&amp;lt; Append(data table("Summary") &amp;lt;&amp;lt; Get As Report) ;
::box3 &amp;lt;&amp;lt;Append(data table("Totals") &amp;lt;&amp;lt; Get As Report) ;
::box4 &amp;lt;&amp;lt; Append(plots);
::box5 &amp;lt;&amp;lt; append(tests);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 04 Oct 2024 21:00:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-place-outline-boxes-side-by-side-in-New-Window-and-how-to/m-p/803689#M98083</guid>
      <dc:creator>Abby_Collins14</dc:creator>
      <dc:date>2024-10-04T21:00:29Z</dc:date>
    </item>
    <item>
      <title>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</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-place-outline-boxes-side-by-side-in-New-Window-and-how-to/m-p/803700#M98085</link>
      <description>&lt;P&gt;You can build the output to be of any format you want.&amp;nbsp; JMP provides the Display Objects that allow you to define scroll areas, display columns, etc..&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Look int the Scripting Guide and the Scripting Index for Display Tree documentation and for Display Objects.&lt;/P&gt;</description>
      <pubDate>Sat, 05 Oct 2024 02:02:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-place-outline-boxes-side-by-side-in-New-Window-and-how-to/m-p/803700#M98085</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2024-10-05T02:02:18Z</dc:date>
    </item>
    <item>
      <title>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</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-place-outline-boxes-side-by-side-in-New-Window-and-how-to/m-p/803701#M98086</link>
      <description>&lt;P&gt;Will do, thanks for the resources!&lt;/P&gt;</description>
      <pubDate>Sat, 05 Oct 2024 02:26:03 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-place-outline-boxes-side-by-side-in-New-Window-and-how-to/m-p/803701#M98086</guid>
      <dc:creator>Abby_Collins14</dc:creator>
      <dc:date>2024-10-05T02:26:03Z</dc:date>
    </item>
  </channel>
</rss>

