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( thisTable:longitude[irow] ) || ",12z"
)
)) ,
Tip( JSL Quote(Function( {thisTable, thisColumn, iRow}, "Open " || Char ( thisTable:iMVInumber[ iRow ] ) || " in your browswer."; ); ) ),
Color( JSL Quote( Function( {thisTable, thisColumn, iRow}, 5;); ) )
)
)
);
dtb << set selectable rows( 1 );