dt = Open( "$SAMPLE_DATA/Big Class.jmp" ); :height << Add Column Properties( Set Property( "Event Handler", Event Handler( Click( JSL Quote(Function( {thisTable, thisColumn, iRow}, {}, ab=(dt<<get selected rows)[1]; );) ) ) ) );
Thanks Experts!
Go to Solution
Names Default to Here( 1 ); dt = Open( "$SAMPLE_DATA/Big Class.jmp" ); has_handler = !Is Empty( dt:height << Get Property( "Event Handler" ) );
View solution in original post
dt = Current Data Table(); col = Column(dt, "height"); colScript = col << Get Script;
?