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.
![matth1_0-1707840742618.png matth1_0-1707840742618.png](https://community.jmp.com/t5/image/serverpage/image-id/61090i66F8C47D122E5177/image-size/medium?v=v2&px=400)
However, uncommenting lines 7 & 9 and running, the filter doesn't do anything:
![matth1_1-1707840825882.png matth1_1-1707840825882.png](https://community.jmp.com/t5/image/serverpage/image-id/61091i33D5A2847941B283/image-size/medium?v=v2&px=400)
Is this expected, or am I missing anything?
[Using JMP 17.2]