cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
See how to use to use Text Explorer to glean valuable information from text data at April 25 webinar.
Choose Language Hide Translation Bar
ComplexNerd
Level III

Change Filter Col Selecter Application Builder with datatable

Hello guys..

 

I am working on application builder., In the interface i have a col Filter box for with now when application opens it prompts to select datatable. Now i have a list box in which it display all the open datatables, when users selects a datatable and clicks the button i want the columns in col filter box to change accordingly. I tried set datatable, and also equating the underlying datatable1 to the selected one. It dosent work. Can i please get some guidelines how to perform this.

 

Thanks in advance

1 REPLY 1
jthi
Super User

Re: Change Filter Col Selecter Application Builder with datatable

I think generally you will have to re-create the filter col selector if you want to change the data table which it is related to. I don't use Application Builder so here is example how it could look like (in very simple case) as JMP script

Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");

nw = New Window("Filter Col Selector Example",
	fcs_collector = V List Box(
		vlb = V List Box(
			fcs = Filter Col Selector(dt)
		)
	)
);

wait(1);

dt2 = Open("$SAMPLE_DATA/Probe.jmp");
vlb << Delete Box;
fcs_collector << Append(vlb = V List Box(
	fcs = Filter Col Selector(dt2)
));
-Jarmo

Recommended Articles