Bug, or user error?
If I create a Data Table Box using the following code:
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
nw = New Window( "Demo Data Table Box",
Data Filter Context Box(
H List Box(
dt << Data Filter(
//Show Controls( 0 ),
Local,
//Add Filter( columns( :sex ) )
),
dtb = data Table Box( dt )
)
)
);
then manually select 'sex' as the filter, the table box is filtered correctly.
However, uncommenting lines 7 & 9 and running, the filter doesn't do anything:
Is this expected, or am I missing anything?
[Using JMP 17.2]