<?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 Re: Appending reports to windows in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Appending-reports-to-windows/m-p/269909#M52537</link>
    <description>&lt;P&gt;I have annotated a script, with a couple of items to ponder concerning your question.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;names default to here(1);
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
New Window("EX",
	hlis = HList box()
);

// You can create stand alone platform objects, making them invisible or not, 
// and then append their report object 
biv_obj1 = dt &amp;lt;&amp;lt; Bivariate(invisible, Y( :Weight ), X( :Height ) );
hlis &amp;lt;&amp;lt; Append (Report(biv_obj1));
// This method appends a static version of the platform's output display. 
// That is, most red triangle options are not available. 

//This method works fine, but is more complex than it has to be
biv_box = Hlist Box( biv_obj2 = dt &amp;lt;&amp;lt; Bivariate( Y( :Weight ), X( :Height ) ));
hlis &amp;lt;&amp;lt; Append(biv_box);

// Platforms can be directly appended to objects within a display window.
hlis &amp;lt;&amp;lt; append(biv_obj2 = dt &amp;lt;&amp;lt; Bivariate( Y( :Weight ), X( :Height ) ));&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Sun, 31 May 2020 10:24:16 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2020-05-31T10:24:16Z</dc:date>
    <item>
      <title>Appending reports to windows</title>
      <link>https://community.jmp.com/t5/Discussions/Appending-reports-to-windows/m-p/269894#M52536</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I put a platform in HlistBox (or some other box)&amp;nbsp;&lt;SPAN style="font-family: inherit;"&gt;while creating it and then I append this box to the window. Is this the ideal way? Is there some "general box" instead of Hlistbox to use?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;I need to append AFTER creating and editing the object.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;Thanks.&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
New Window("EX",
	hlis = HList box()
);

biv_obj1 = dt &amp;lt;&amp;lt; Bivariate( Y( :Weight ), X( :Height ) );
//Running some editing on the object
//And then adding to the window
hlis &amp;lt;&amp;lt; Append (biv_obj1);//Fail - not a display box

//Putting bivariate into Hlistbox for appending only
biv_box = Hlist Box( biv_obj2 = dt &amp;lt;&amp;lt; Bivariate( Y( :Weight ), X( :Height ) ));
hlis &amp;lt;&amp;lt; Append(biv_box);//OK&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 09 Jun 2023 23:27:39 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Appending-reports-to-windows/m-p/269894#M52536</guid>
      <dc:creator>tom_abramov</dc:creator>
      <dc:date>2023-06-09T23:27:39Z</dc:date>
    </item>
    <item>
      <title>Re: Appending reports to windows</title>
      <link>https://community.jmp.com/t5/Discussions/Appending-reports-to-windows/m-p/269909#M52537</link>
      <description>&lt;P&gt;I have annotated a script, with a couple of items to ponder concerning your question.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;names default to here(1);
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
New Window("EX",
	hlis = HList box()
);

// You can create stand alone platform objects, making them invisible or not, 
// and then append their report object 
biv_obj1 = dt &amp;lt;&amp;lt; Bivariate(invisible, Y( :Weight ), X( :Height ) );
hlis &amp;lt;&amp;lt; Append (Report(biv_obj1));
// This method appends a static version of the platform's output display. 
// That is, most red triangle options are not available. 

//This method works fine, but is more complex than it has to be
biv_box = Hlist Box( biv_obj2 = dt &amp;lt;&amp;lt; Bivariate( Y( :Weight ), X( :Height ) ));
hlis &amp;lt;&amp;lt; Append(biv_box);

// Platforms can be directly appended to objects within a display window.
hlis &amp;lt;&amp;lt; append(biv_obj2 = dt &amp;lt;&amp;lt; Bivariate( Y( :Weight ), X( :Height ) ));&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 31 May 2020 10:24:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Appending-reports-to-windows/m-p/269909#M52537</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-05-31T10:24:16Z</dc:date>
    </item>
    <item>
      <title>Re: Appending reports to windows</title>
      <link>https://community.jmp.com/t5/Discussions/Appending-reports-to-windows/m-p/269920#M52540</link>
      <description>&lt;P&gt;Thank you Jim&lt;/P&gt;&lt;P&gt;1. Adding as report disconnects the report from the data&lt;/P&gt;&lt;P&gt;2. Adding while creating is fine, but I need to append after I finish to create the platform and running some edits on it&lt;/P&gt;</description>
      <pubDate>Sun, 31 May 2020 11:21:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Appending-reports-to-windows/m-p/269920#M52540</guid>
      <dc:creator>tom_abramov</dc:creator>
      <dc:date>2020-05-31T11:21:06Z</dc:date>
    </item>
    <item>
      <title>Re: Appending reports to windows</title>
      <link>https://community.jmp.com/t5/Discussions/Appending-reports-to-windows/m-p/269932#M52542</link>
      <description>&lt;P&gt;You seem to have a good handle on a good approach.&amp;nbsp; What you are doing is typically the way that I go.&amp;nbsp; But sometimes it does work out better to append the platform to the display window and to make the edits required after the append.&lt;/P&gt;</description>
      <pubDate>Sun, 31 May 2020 12:50:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Appending-reports-to-windows/m-p/269932#M52542</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-05-31T12:50:18Z</dc:date>
    </item>
  </channel>
</rss>

