Adding a search field to custom launch window
I have code here to create a custom launch window, as seen in the first image. Is there a way to add a filter similar to what we normally see when we select analyze from menu?
clearCols = Expr( // Expression to clear all current settings
selTests << Remove All;
);
recallCols = Expr(
::testsRecall = selTests << Get Items;
);
dt = Current Data Table();
/* Custom Launch Window */
se
...