Hyperlinks to Table box rows
Hi, Is there a way to add hyperlinks to the table box rows?Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Cities.jmp", invisible );
New Window( "", dtb = Data Table Box( dt ) );
:Latitude << Set Property(
"Event Handler",
Event Handler(
Click(JSL Quote(
Function( {thisTable, thisColumn, iRow},
Web(
"https://www.google.com/maps/@" || Char( thisTable:latitude[irow] ) || "," ||
Char(
...