GridView.emulateHyperlinkClick

Syntax

emulateHyperlinkClick(row, column);

Parameters

row. Series index.

column. Column index.

Description

The emulateHyperlinkClick method simulates hyperlink click.

Example

To execute the example, the HTML page must contain the GridBox component named grid (see Example of the GridBox Component Layout). The report must contain hyperlink in the cell with the indexes (0, 0):

// Click the hyperlink
grid.emulateHyperlinkClick(0,0);

After executing the example hyperlink click is simulated in the cell of the first series of the first row.

See also:

GridView