Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
2515
How to remove blue highlight on a cell
posted

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?

Parents
No Data
Reply
  • 2525
    Verified Answer
    posted

    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>

Children