disableGridHyperLinks

Disables (or enables) the hyperlinks in grid cells, automatically generated for combo box controls. This function also refreshes the grid.

Parameters

  1. controlId - The id of the grid control

  2. disable - true, if you want to disable the hyperlinks, false if you want to enable them again.

  3. columnName - (optinal) The columnName parameter is used to determine whether hyperlinks should be disabled for the entire grid or for a specific column.

Example Usages

app.disableGridHyperLinks("myGrid", true); //disable links
app.disableGridHyperLinks("myGrid", false); //enable links again

Return Values

Function does not explicitly produce return value.

Last updated