I'm working with angularjs but i have a problem with my ng-grid.
First, the client didn't want the user to select a row just by clicking it. They wanted a single checkbox at the beginning of the row. To do that i had to disable the row selection by doing this : "enableFullRowSelection: false". This prevented the row to be selected.
But now they want me to allow the highlight of the row by clicking it. I tried to put a css focus but the event never triggered (i tried hover and mouseenter and the css worked).
How can i disable the row but still let the focus event enable ?
If someone can help me it will unstuck me !