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.

Example Usages

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

Last updated