I have an issue where the sorting is causing a runtime error in the SfListView.
I used the online demo to setup the sorting....
<sync:SfListView.DataSource>
<dataSource:DataSource>
<dataSource:DataSource.SortDescriptors>
<dataSource:SortDescriptor PropertyName="SortOrder" Direction="Ascending" />
</dataSource:DataSource.SortDescriptors>
<dataSource:DataSource.GroupDescriptors>
<dataSource:GroupDescriptor PropertyName="OwnerName" />
</dataSource:DataSource.GroupDescriptors>
</dataSource:DataSource>
</sync:SfListView.DataSource>
The property SortOrder is a calculated field in the object, the items bound to the SfListView is a list of objects List<T>.
Any ideas what could be causing this issue?
Jason