cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

Discussions

Solve problems, and share tips and tricks with other JMP users.
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