4 Answers, 1 is accepted
Would you please try to set the CanUserSelect property of RadGridView to False and let me know whether the issue still persists?
Vanya Pavlova
the Telerik team
Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>

Sorry I misspelled it. I did try setting CanUserSelect = false...
Thank you for getting back to us! Since you have set the CanUserSelect property to False you should not be able to select in your RadGridView. However if you set the IsSynchronizedWithCurrent item to True the first row will be selected even if you set the CanUserSelect property to False. Can you verify that the IsSynchronizedWithCurrentItem is not set to True within RadGridView's definiton and how the grid is bound to in your case? If the suggestion above do not work for you feel free to open a new support ticket where you may attach a runnable project which we may use for local testing.
I look forward to hearing from you!
Vanya Pavlova
the Telerik team
Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>

I Did set "CanUserSelect = false" and "IsSynchronizedWithCurrentItem = false" and no row is selected when the grid is displayed.
I don't mind so much the "live" highlighting of the row as we move our cursor over the grid... But I can still "select" a row and a highlighted is then displayed.
This is the grid:
<
k:GridView
ItemsSource
=
"{Binding DetailList}"
ShowColumnHeaders
=
"False"
CanUserSelect
=
"False"
IsSynchronizedWithCurrentItem
=
"False"
>
<
k:GridView.Columns
>
<
k:GridViewColumn
DataMemberBinding
=
"{Binding PropertyName}"
/>
<
k:GridViewColumn
DataMemberBinding
=
"{Binding PropertyValue}"
/>
</
k:GridView.Columns
>
</
k:GridView
>
Thanks again,
Michel