Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
If you set the IsSynchronizedWithCurrentItem property of the RadGridView to "false" there should be not a default selection.
I know this is an older post, but in case anyone comes across this, and cannot turn off "IsSynchronizedWithCurrentItem" because the functionality is required for other things within the grid, there is another workaround I have discovered:
grid.Loaded +=
new
RoutedEventHandler((sender, e) => { (sender
as
RadGridView).CurrentItem =
null
; });