We are trying to use Filter Col Selector in JMP Pro 15.0.0. It works if we bring the data table to the front, but that is not good for our addin. It would be better to call the table by name in Filter Col Selector. The scripting index says data table is an argument for Filter Col Selector, but I can't make it work.
In the following example, how do we get Filter Col Selector to work with dt1 without changing the order of opening tables and not using Bring Window
To Front?
Names Default To Here( 1 );
dt1 = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt2 = Open( "$SAMPLE_DATA/Cities.jmp" );
New Window( "Filter Col Selector Example",
lb = Filter Col Selector( dt1, width( 250 ) )
);
Thanks for any suggestions.