This question is locked. New answers and comments are not allowed.
I added default sorting in my RadGridView with the XAML below. The Issue that I have is that if I have radGridView.ItemsSource = Nothing in my code, an Exception thrown - when I remove the below XAML, the exception goes away. How can I clear/reset the ItemSource of the RadGridView AND have default sorting, while avoiding the exception?
...
...
<telerikGridView:RadGridView.SortDescriptors>
<data:SortDescriptor Member="Title"
SortDirection="Ascending" />
</telerikGridView:RadGridView.SortDescriptors>
...
