setHyperlink(row, col, hyperlink)

Drill Down into Data for basic information on hyperlinks.

Creates a hyperlink for an individual Table cell.

Parameter

row

row index

col

column index

hyperlink

String or inetsoft.report.Hyperlink

Example

setHyperlink(1, 1, "Tutorial/Ad Hoc");
setHyperlink(1, 1, null); // remove hyperlink

Either syntax below can be used in component script:

setHyperlink                 // unqualified
TableView1.setHyperlink      // qualified

For onInit/onRefresh scripts, and for component and property scripts on other components, the second (qualified) form is required.