Hi, how do I prevent hot-tracking and highlighting of a selected cell/row with the RadListView?
I need to do this with ListViews having a ViewType of both IconView and DetailsView.
I found the following post and tried the suggestion (with both ViewTypes) but it did not work for me:
http://www.telerik.com/forums/remove-selected-and-hover-states
The code I was using was (following the above post):
void radListView1_SelectedItemChanged(object sender, Telerik.WinControls.UI.ListViewItemEventArgs e)
{
radListView1.CurrentItem = null;
radListView1.SelectedItem = null;
}
Thanks,
-Lou