Does anyone have any idea how to access Filter Col Selector's settings? I can set them but I haven't figured out how I could for example check which data types are allowed in a Filter Col Selector.
Basically anything would be fine for me. I'm trying to build "generic" script which I could use to change data table in filter col selector because to my knowledge it isn't possibly without remaking the filter col selectorAdd option to change col list box/filter col selector datatable . But to re-create one I would want to have same settings as the old one (one option for me is that I completely give up with Filter Col Selector and Col List Selector and write my own classes for those, but I would rather not).
Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
nw = New Window("Filter Col Selector Example",
fontobj = lb = Filter Col Selector(width(250)),
);
lb << Character(0);
p = (nw << Xpath("//PopupBox"))[1];
p << Get Menu Count;
p << Get Menu Text(18);
-Jarmo