Does anyone know if there is an option in JMP Pro 17.2 to make the report from a data table highlight the same way as was done in JMP14?
Here is an image that shows JMP14 on the left, and JMP17 on the right -- selecting rows in the table on JMP17 obscures any cell coloring that the report had.
desired behavior from JMP14 (left) and incorrect behavior from JMP17 (right):
Here's the script I used:
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt:NAME << Color Cells( "Orange", 3 );
jmp_report = New Window( "Big Class",
<<show menu( 0 ),
<<show toolbar( 0 ),
Text Box( "Big Class" ),
H List Box(
Outline Box( "Big Class", dt << Get As Report ),
Outline Box( "Big Class", dt << Get As Report )
),
);
I hope I'm missing something, but I fear that it's just how JMP operates now.
Jordan