How to use JSL to determine whether a column has event handlers?
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!