Whenever I click on any cell (and the cell becomes active) in the igGrid it has a blue border around it. I read one post where the solution was to modify the CSS styling, however, the styling was used by the Selection feature, which I am not using. I tried making the indicated styling change and it had no impact.
It there a way to remove the blue border around an active cell when the Selection feature is not being used?
The suggestion worked. Thanks for your assistance.
Hello hrwebb,
You can create a CSS style definition such that all child td elements of a table of a specific class will be applied an outline-color of transparent. This will make the outline no longer visible.
Here's the style definition I used assuming a class name of grid:
table.grid td { outline-color: transparent !important;}
Make sure to put in the proper class name in your markup!
<table id="gridUpdating" class="grid"></table>