Optimizing list box content update.
Hello JMP community, Lately, I was looking into improve the performance of my internal JSL scripts and I found the following performance issues that I would like to address.Lets take the following script (JMP 17.2 PRO running on macOS): Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
values = Column( dt, 1 )[dt << get rows where( Excluded( Row State() ) != 1 )];
new window(
...