How to delete Filter Col Selector display box?
I have a Filter Col Selector with filter text field (because of many columns in the data table): Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Bands Data.jmp" );
pb = Panel Box("Test",
fcl = Filter Col Selector( dt, all )
);
New Window( "Filter Col Selector Example", pb );
I get the list of columns (red frame) and filter (green frame)Let's say I now want to delete the whole thing. I s...