<?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: Help with Data Filter Context Box() in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Help-with-Data-Filter-Context-Box/m-p/86615#M38635</link>
    <description>The reason your Distribution is not changing when you change selections in your Data Filter, is because the "Automatic Recalc(1)" option is not set in the JSL for the Distributions.&lt;BR /&gt;&lt;BR /&gt;Concerning the resizing of the Calendar Boxes, I do not see a way to change their size.  Some other Community Member may have a method, but I can not find one.&lt;BR /&gt;</description>
    <pubDate>Wed, 02 Jan 2019 20:29:26 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2019-01-02T20:29:26Z</dc:date>
    <item>
      <title>Help with Data Filter Context Box()</title>
      <link>https://community.jmp.com/t5/Discussions/Help-with-Data-Filter-Context-Box/m-p/86561#M38597</link>
      <description>&lt;P&gt;I am having trouble inserting a Data Filter Context Box into my script. My script is used to pull in data via SQL, perform some table functions and then spitting out graphs inside of tabbed windows. This makes it visually nicer than what i was doing as every singe output had a new window associated with it and the Test Engineers would have to click on multiple buttons.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have read these boards as well as reading the scripting guide. The problem i have is how to insert this after the graphs plots and distributions are populated. From the scripting guide.&lt;/P&gt;&lt;P&gt;I tried to use the same philosophy that Mr. &lt;A href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2687" target="_blank"&gt;txnelson&lt;/A&gt; helped me with but I can't get it to create a temp box and then populate after click my buttons. Again, any and all help is appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;d&lt;/P&gt;&lt;P&gt;guide,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;// ---------------------------  From Scripting Guide -------------------------
dt = Open( "$SAMPLE_DATA/Hollywood Movies.jmp" );
	win = New Window( "Shared Local Filter",
		Data Filter Context Box(
// enclose the h list box that contains distribution and graph builder
			H List Box(
// add the local data filter 
// NOTE: My tables aren't created yet so i am getting an error here.
				dt &amp;lt;&amp;lt; Data Filter( Local ),  
				dt &amp;lt;&amp;lt; Distribution(
					Weight( :Profitability ),
						Nominal Distribution( 
							Column( :Lead Studio Name ) 
						),
						Nominal Distribution( 
							Column( :Genre ) 
						),
					Histograms Only
				),
				dt &amp;lt;&amp;lt; Graph Builder(
					Variables(
						X( :Genre ),
						Y( :Domestic Gross ),
						Y( :Foreign Gross, Position( 1 ) )
					),
					Show Control Panel( 0 ),
					Elements(
						Bar( X, Y( 1 ), Y( 2 ),
							Legend( 2 ),
							Bar Style( "Side by side" ),
							Summary Statistic( "Mean" )
						),
						Frequencies( 0 ),
					)
				)
			)
		)
	);

// --------------------------- My Data Pull Script Simplified -------------------------

Names Default To Here( 1 );

Close All( Data Tables, No Save );
Close All( Reports );
Clear Log();
Close All( journals, no save );
Clear Symbols();

sqlstartA = Today();
sqlendA = Today();
sqlstart = Format( sqlstartA, "yyyy-mm-dd" );
sqlend = Format( sqlendA, "yyyy-mm-dd" );

/************************************************************************************************************************************************/
/*                                                                         	  																	*/
/* ---------------------------------------------------------------[START EXAMPLE] -----------------------------------------------------------	*/
/*                                                                        																		*/
/************************************************************************************************************************************************/

hay = New Window( "Test Database Tools",
	V List Box(
		V List Box(
			Text Box(
				"Product Engineering Database Tools",
				&amp;lt;&amp;lt;Set Font Size( 20 ),
				&amp;lt;&amp;lt;Set Font Style( "Bold" ),
				&amp;lt;&amp;lt;Set Min Size( 800, 36 ),
				&amp;lt;&amp;lt;Set Max Size( 800, 36 ),
				&amp;lt;&amp;lt;Set Width( 1900 ),
				&amp;lt;&amp;lt;Set Wrap( 1070 ),
				&amp;lt;&amp;lt;Justify Text( "Center" )
			),
			Spacer Box( Size( 10, 15 ) ),
			H List Box(
				bb = Border Box( Left( 15 ), Right( 10 ), Top( 10 ), Bottom( 10 ), Sides( 15 ),
					V List Box(
						lineup1 = Lineup Box( N Col( 1 ),
							V List Box(
								lineup = Lineup Box( N Col( 1 ),
									Text Box( "Select Desired Test Dates", &amp;lt;&amp;lt;Set Font Size( 20 ), &amp;lt;&amp;lt;Justify Text( "Center" ) ),
									Spacer Box( Size( 5, 15 ) ),
									H Splitter Box(
										Border Box( Left( 15 ), Right( 10 ), Top( 10 ), Bottom( 10 ), Sides( 15 ),
											StartDate = Calendar Box(
												&amp;lt;&amp;lt;Set Function( Function( {f1}, sqlStartA = StartDate &amp;lt;&amp;lt; Get Date() ) )
											)
										),
										Border Box( Left( 15 ), Right( 10 ), Top( 10 ), Bottom( 10 ), Sides( 15 ),
											EndDate = Calendar Box(
												&amp;lt;&amp;lt;Set Function( Function( {f2}, sqlendA = EndDate &amp;lt;&amp;lt; Get Date() ) )
											)
										)
									)
								)
							),
							Spacer Box( Size( 5, 5 ) ),
							
/****************************************************/
/* Selecting Start And End Date Not Required		*/
/****************************************************/
							
							waferlist = Button Box( "Click Here When Finished",
								sqlstart = Format( sqlstartA, "yyyy-mm-dd" );
								sqlend = Format( sqlendA, "yyyy-mm-dd" );
								Show( sqlstart, sqlend );
								lineup1 &amp;lt;&amp;lt; Append(
									V List Box(
										Spacer Box( Size( 5, 5 ) ), 

										Text Box( "Select Your Wafer(s)", &amp;lt;&amp;lt;Set Font Size( 15 ), &amp;lt;&amp;lt;Justify Text( "Center" ) ),
										Spacer Box( Size( 5, 15 ) ),
										loaddata = Button Box( "Load The Test Data",
											dt = Open( "$SAMPLE_DATA/big class.jmp", invisible );

/****************************************************/
/* Distribution, Graph and Fit Y By X Plots	    */
/****************************************************/
											
								
											distr &amp;lt;&amp;lt; Delete;
											plot &amp;lt;&amp;lt; Delete;
											fitYbyX &amp;lt;&amp;lt; Delete;
											
											distr = V List Box( Distribution( Continuous Distribution( Column( :height ) ) ) );
											distrvlb &amp;lt;&amp;lt; append( distr );
											
											plot = V List Box(
												Graph Builder(
													Size( 524, 454 ),
													Show Control Panel( 0 ),
													Variables( X( :height ), Y( :age ), Overlay( :sex ) ),
													Elements( Smoother( X, Y, Legend( 4 ) ) )
												)
											);
											plotvlb &amp;lt;&amp;lt; append( plot );
											
											fitYbyX = V List Box( Oneway( Y( :height ), X( :age ) );
											);
											
											fitYbyXvlb &amp;lt;&amp;lt; Append( fitYbyX ); 
										)
									)
								)
							)
						)
					)
				), 
				
// Creates Tabed Windows for Test Data Information
// Temp Windows that get filled once the data is loaded				
				Tab Box(
					"Example",
					V List Box(
						H List Box(
							distrvlb = V List Box( distr = Graph Box() ),
							plotvlb = V List Box( plot = Graph Box() ),
							fitYbyXvlb = V List Box( fitYbyX = Graph Box() )
						),

					)
				)
			)
		)
	)
) &amp;lt;&amp;lt; Maximize Window;

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jan 2019 16:17:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Help-with-Data-Filter-Context-Box/m-p/86561#M38597</guid>
      <dc:creator>Yngeinstn</dc:creator>
      <dc:date>2019-01-01T16:17:36Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Data Filter Context Box()</title>
      <link>https://community.jmp.com/t5/Discussions/Help-with-Data-Filter-Context-Box/m-p/86563#M38599</link>
      <description>&lt;P&gt;Are you looking to add a local data filter(s), for specified charts/graphs?&lt;/P&gt;
&lt;P&gt;Are you looking to add a filter that changes all of the charts based upon a single filter?&lt;/P&gt;
&lt;P&gt;Are you looking to have the user click on a one of the bars in the histogram, and from the rows selected, change the othe charts and graphs?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Attached is a modification of your script that adds in a data filter to the left of the Distribution Platform output, and when selected, changes all of the charts attached to the data table.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jan 2019 17:31:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Help-with-Data-Filter-Context-Box/m-p/86563#M38599</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2019-01-01T17:31:06Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Data Filter Context Box()</title>
      <link>https://community.jmp.com/t5/Discussions/Help-with-Data-Filter-Context-Box/m-p/86564#M38600</link>
      <description>&lt;P&gt;Sorry for not specifying.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes a local data filter that effects all charts in the tab,.. I will look at your script in a moment.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank You&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jan 2019 17:43:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Help-with-Data-Filter-Context-Box/m-p/86564#M38600</guid>
      <dc:creator>Yngeinstn</dc:creator>
      <dc:date>2019-01-01T17:43:24Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Data Filter Context Box()</title>
      <link>https://community.jmp.com/t5/Discussions/Help-with-Data-Filter-Context-Box/m-p/86611#M38632</link>
      <description>&lt;P&gt;Mr. Nelson,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried to put that into my script and it seems that it is only updating a portion of the graphs / distributions.&amp;nbsp; I have attached an updated script that is exactly what i am trying to do with the additions of a couple of other tabs behind the two that you see.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have also attached a good example of a dataset i am pulling in. This table includes 3 wafers worth of data to give you an idea.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Additionally, I would like to know if there is a way to resize the calendar boxes so that they take up less room which leaves more for the analysis.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jan 2019 19:30:39 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Help-with-Data-Filter-Context-Box/m-p/86611#M38632</guid>
      <dc:creator>Yngeinstn</dc:creator>
      <dc:date>2019-01-02T19:30:39Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Data Filter Context Box()</title>
      <link>https://community.jmp.com/t5/Discussions/Help-with-Data-Filter-Context-Box/m-p/86615#M38635</link>
      <description>The reason your Distribution is not changing when you change selections in your Data Filter, is because the "Automatic Recalc(1)" option is not set in the JSL for the Distributions.&lt;BR /&gt;&lt;BR /&gt;Concerning the resizing of the Calendar Boxes, I do not see a way to change their size.  Some other Community Member may have a method, but I can not find one.&lt;BR /&gt;</description>
      <pubDate>Wed, 02 Jan 2019 20:29:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Help-with-Data-Filter-Context-Box/m-p/86615#M38635</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2019-01-02T20:29:26Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Data Filter Context Box()</title>
      <link>https://community.jmp.com/t5/Discussions/Help-with-Data-Filter-Context-Box/m-p/86616#M38636</link>
      <description>That makes complete sense . Thank you for your assistance.&lt;BR /&gt;</description>
      <pubDate>Wed, 02 Jan 2019 20:31:56 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Help-with-Data-Filter-Context-Box/m-p/86616#M38636</guid>
      <dc:creator>Yngeinstn</dc:creator>
      <dc:date>2019-01-02T20:31:56Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Data Filter Context Box()</title>
      <link>https://community.jmp.com/t5/Discussions/Help-with-Data-Filter-Context-Box/m-p/86617#M38637</link>
      <description>&lt;P&gt;I have attached an updated version of your script.&amp;nbsp; As Jim points out, Automatic Recalc is not set on the Distribution.&amp;nbsp; The reason for this is that your data filters are global filters, and not local filters.&amp;nbsp; In your script, notice that while all reports appear to update, the Data Table row states are changing, and results are updating on both tabs.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've made two changes to make the filters local:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Add "Local" option to Data Filter() commands&lt;/LI&gt;
&lt;LI&gt;Changed your HListBox() to a Data Filter Context Box() on each tab.&amp;nbsp; This keeps the effect of each filter local to the tab&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The Local Data Filter will automatically set the Auto Recalc flag on each associated platform.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I do not know of a way to make the calendar smaller.&amp;nbsp; I'm not sure what workflow you are going for after the initial date selection.&amp;nbsp; You might consider two windows, a launcher window with date selection and a result window showing the reports.&amp;nbsp; You could include the date range as a subtitle.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to keep both in the same window, you could put the calendars inside an outline node that using &amp;lt;&amp;lt;Outline Close Orientation("Vertical") and automatically close the dates when the reports are populated.&amp;nbsp; You would probably also want to look at the case where "Load Test Data" is pressed multiple times.&amp;nbsp; Currently it will append a filter each time the button is pressed.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jan 2019 20:43:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Help-with-Data-Filter-Context-Box/m-p/86617#M38637</guid>
      <dc:creator>danschikore</dc:creator>
      <dc:date>2019-01-02T20:43:06Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Data Filter Context Box()</title>
      <link>https://community.jmp.com/t5/Discussions/Help-with-Data-Filter-Context-Box/m-p/86850#M38664</link>
      <description>&lt;P&gt;While you cannot re-size the Calendar Box object, you can use a Number Edit Box instead for the same purpose. Set the format to the date style you want and then it will present a calendar during interaction but otherwise it is only a small box.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to Here( 1 );

nw = New Window( "Date Entry",
	Outline Box( "Calendar Box Substitute",
		neb = Number Edit Box( 01Jan2019,
			&amp;lt;&amp;lt; Set Format( Format( "m/d/y", 12 ) )
		)
	),
	H List Box(
		Button Box( "OK",
			date = neb &amp;lt;&amp;lt; Get;
		),
		Button Box( "Cancel" )
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 03 Jan 2019 12:14:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Help-with-Data-Filter-Context-Box/m-p/86850#M38664</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2019-01-03T12:14:31Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Data Filter Context Box()</title>
      <link>https://community.jmp.com/t5/Discussions/Help-with-Data-Filter-Context-Box/m-p/87347#M38668</link>
      <description>&lt;P&gt;Thank you your's and Jim's help. I didn't think about the automatic recalc at all. And a special thanks for the Data Filter Context Box() addition. I was trying to use that but couldn't figure out the correct placement.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As for the calendar, i completely agree with you. Make it an outline box that can open and close..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The main window requires some additions and tweeks once i get all the graphs, distributions, Fit Y by X and Wafer Maps (semiconductor toolkit) in the appropriate windows. The issues you and Jim are helping with are the low hanging fruit when it comes to this analysis tool. I feel that the biggest hurdle is going to be how i handle the outliers. I found GrubbsOutlierTest3.jsl on these boards and will use this is some way, shape or form.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank You again.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;d&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jan 2019 12:45:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Help-with-Data-Filter-Context-Box/m-p/87347#M38668</guid>
      <dc:creator>Yngeinstn</dc:creator>
      <dc:date>2019-01-03T12:45:24Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Data Filter Context Box()</title>
      <link>https://community.jmp.com/t5/Discussions/Help-with-Data-Filter-Context-Box/m-p/95078#M38768</link>
      <description>As you pointed out in your reply the issue with " Click Here When Finished" appends the window when it is clicked. I have tried to &amp;lt;&amp;lt; Delete the Box() and a few other things that have been unsuccessful. I have however, managed to do insert some Throw() statements when no dates or wafers were selected. This one is proving to be challenging. Any suggestions?</description>
      <pubDate>Sat, 05 Jan 2019 14:42:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Help-with-Data-Filter-Context-Box/m-p/95078#M38768</guid>
      <dc:creator>Yngeinstn</dc:creator>
      <dc:date>2019-01-05T14:42:17Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Data Filter Context Box()</title>
      <link>https://community.jmp.com/t5/Discussions/Help-with-Data-Filter-Context-Box/m-p/98491#M38782</link>
      <description>&lt;P&gt;I belive i can accomplish the appending that window by using a for loop. Just exactly how i put code the i &amp;lt; =&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank You&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;For( i = 1, i &amp;lt;= /* not sure what i would put in here */ , i ++,&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;sqlstart = Format( sqlstartA, "yyyy-mm-dd" );&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;sqlend = Format( sqlendA, "yyyy-mm-dd" );&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;Show( sqlstart, sqlend );&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;lineup1 &amp;lt;&amp;lt; Append(&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;V List Box(&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;Spacer Box( Size( 5, 5 ) ), &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;Text Box( "Select Your Wafer(s)", &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;     &amp;nbsp;&amp;lt;&amp;lt; Set Font Size( 15 ), &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;  &amp;lt;&amp;lt; Justify Text( "Center" ) &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; ),&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; Spacer Box( Size( 5, 15 ) ),&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; loaddata = Button Box( "Load The Test Data",&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;dt = current data table();&lt;BR /&gt;//&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;   &amp;nbsp;dt = Open( "$SAMPLE_DATA/big class.jmp", invisible )&lt;BR /&gt;&lt;BR /&gt;// Insert End of Script&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jan 2019 14:10:52 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Help-with-Data-Filter-Context-Box/m-p/98491#M38782</guid>
      <dc:creator>Yngeinstn</dc:creator>
      <dc:date>2019-01-07T14:10:52Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Data Filter Context Box()</title>
      <link>https://community.jmp.com/t5/Discussions/Help-with-Data-Filter-Context-Box/m-p/99184#M38788</link>
      <description>&lt;P&gt;I'm not clear on what you are trying to do inside the loop.&amp;nbsp; If you want the controls to go away, you could either delete them or you can just hide them.&amp;nbsp; Hiding them may not be ideal - they are still in the display tree - but this is a common approach.&amp;nbsp; Here's an example that takes the user through multiple steps of input, hiding the controls at each step:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;New Window( "Wizard Interface",
	top = H List Box(
		// Control panels
		controls = Panel Box( "Inputs",
			panel1 = V List Box(
				Text Box("Panel 1"),
				Button Box( "Next",
					panel1 &amp;lt;&amp;lt; Visibility( "Collapse" );
					panel2 &amp;lt;&amp;lt; Visibility( "Visible" );
				)
			),
			panel2 = V List Box(
				Text Box("Panel 2"),
				Button Box( "Next",
					panel2 &amp;lt;&amp;lt; Visibility( "Collapse" );
					panel3 &amp;lt;&amp;lt; Visibility( "Visible" );
				),
				&amp;lt;&amp;lt;Visibility( "Collapse" )
			),
			panel3 = V List Box(
				Text Box("Panel 3"),
				Button Box( "Next",
					controls &amp;lt;&amp;lt; Visibility( "Collapse" );
					top &amp;lt;&amp;lt; Append( Panel Box( "Report windows" ) );
				),
				&amp;lt;&amp;lt;Visibility( "Collapse" )
			)
		)
	)
)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Is this similar to what you want to do?&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jan 2019 18:44:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Help-with-Data-Filter-Context-Box/m-p/99184#M38788</guid>
      <dc:creator>danschikore</dc:creator>
      <dc:date>2019-01-07T18:44:44Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Data Filter Context Box()</title>
      <link>https://community.jmp.com/t5/Discussions/Help-with-Data-Filter-Context-Box/m-p/99402#M38795</link>
      <description>My apologies. If you run the script that you fixed and click the button "Click here when finished" it keeps appending the display box. I could have sworn you pointed that when you replied but now i realize it was related to a different topic.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 07 Jan 2019 21:17:39 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Help-with-Data-Filter-Context-Box/m-p/99402#M38795</guid>
      <dc:creator>Yngeinstn</dc:creator>
      <dc:date>2019-01-07T21:17:39Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Data Filter Context Box()</title>
      <link>https://community.jmp.com/t5/Discussions/Help-with-Data-Filter-Context-Box/m-p/104808#M38827</link>
      <description>&lt;P&gt;Yes, I first noticed that the "Load The Test Data" duplicates parts of the interface (the filter), and as you point out the "Click Here When Finished" also duplicates UI.&amp;nbsp; You mentioned that you were having trouble deleting the box, but I wasn't sure if you wanted to (a) delete the controls so that they can only be used once (b) delete the filter so that you can replace it with another.&amp;nbsp; My previous response was to demonstrate a way to to (a) without actually having to delete anything - just hide and show different parts of the window depending on the state.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Attached is another modification of the script that I changed to delete the components.&amp;nbsp; I save a reference to the boxes that are added to the display.&amp;nbsp; Each time the boxes are added it will first call &amp;lt;&amp;lt; Delete Box on the previously added boxes.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jan 2019 19:23:19 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Help-with-Data-Filter-Context-Box/m-p/104808#M38827</guid>
      <dc:creator>danschikore</dc:creator>
      <dc:date>2019-01-08T19:23:19Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Data Filter Context Box()</title>
      <link>https://community.jmp.com/t5/Discussions/Help-with-Data-Filter-Context-Box/m-p/105111#M38857</link>
      <description>That worked perfect, thank you. I have to read up on "Is Scriptable" and see how else it could be used&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 09 Jan 2019 12:23:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Help-with-Data-Filter-Context-Box/m-p/105111#M38857</guid>
      <dc:creator>Yngeinstn</dc:creator>
      <dc:date>2019-01-09T12:23:37Z</dc:date>
    </item>
  </channel>
</rss>

