I am unable to get the desired results when binding an accordion control to a CollectionViewSource in XAML. The bind happens but all that is displayed is the class name of the object in the collection; I cannot seem to access the properties of the object.
<syncfusion:SfAccordion x:Name="ssAccordion"
DisplayMemberPath="Name"
ItemsSource="{Binding Source={StaticResource AreasViewSource}}">
</syncfusion:SfAccordion>