is there any easy solution to have still selected row when Grid looses control? When it happens row is not selected any more. Such solution is for example in windows controls, when the row just changes colour (i.e. on grey ).
I have several grids on the same page, and would like to have it lose the highlight when a different grid is clicked.
If anything, they are all staying highlighted.
I was able to accomplish what I needed by changing the AllowRowSelect option to "False":
<ClientSettings>
<Selecting AllowRowSelect="False"/>
<ClientEvents OnRowDblClick="MyGrid_DblClick"/>
</ClientSettings>
And then enable a row hover color, in my .css file:
.RadGrid_Office2007 .rgHoveredRow
{
background-color: #ffffff !important;
}
(In our case, I have alternating colors already, we just want it to highlight in white.)
That did the trick! Now users get a visual reference for the row they are about to edit (with double-click), but it goes away when they move around the page.