setHyperLink (report, row, column, callback);
report. Report.
row. Row index.
column. Column index.
callback. The callback procedure.
The setHyperLink method simulates the click on hyperlink.
The ReportBox component with the ReportBox name and the service to work with the regular report with the PrxMbService name is required on the HTML page to execute an example (see Example of the ReportBox Component Layout). The hyperlink must be in the table cell with the row index three and the column index one. Create the setHyperlink function
function setHyperlink() {
prxMbService.setHyperLink(prxReport, 3, 1);
reportBox.getDataView().refreshAll();
}
The operation, determined for the hyperlink, is performed after the function execution (for example, switching to another report sheet).
See also: