disableGridHyperLinks
Disables (or enables) the hyperlinks in grid cells, automatically generated for combo box controls. This function also refreshes the grid.
Parameters
controlId - The id of the grid control
disable - true, if you want to disable the hyperlinks, false if you want to enable them again.
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
Was this helpful?