Data Filter Source Box
Summary: Runs the initial setup and configuration of a data filter source box, setting row states to hide all rows initially and then making specific rows visible.
Code:
dt = Open("data_table.jmp");
Data Filter Source Box( 1 ) << Set Row States( dt, [0] );
Data Filter Source Box( 1 ) << Set Row States( dt, [1, 2, 3, 4] );
rowstates = dt << get row states;
Code Explanation:
- Open data table.
- Access Data Filter Source Box.
- Set initial row states to all hidden.
- Set specific rows visible.
- Retrieve current row states.