This question is locked. New answers and comments are not allowed.
Hello there,
I've got version 2016.2.613.1050 of the Telerik Silverlight controls. I've got a RadTreeListView
<telerik:RadTreeListView x:Name="GridView" DataLoadMode="Asynchronous" IsExpandableBinding="{Binding IsFolder}" AutoExpandItems="False" AutoExpandGroups="False" AutoLoadHierarchy="False" RowIsExpandedChanged="GridView_OnRowIsExpandedChanged" BorderThickness="0" VerticalAlignment="Top" ScrollViewer.VerticalScrollBarVisibility="Visible" ScrollViewer.HorizontalScrollBarVisibility="Disabled" Sorted="GridView_OnSorted" Width="{Binding Source={StaticResource VAR}, Path=ViewAreaWidthInside}" Height="{Binding Source={StaticResource VAR}, Path=ViewAreaHeightWithOffset}" CanUserFreezeColumns="False" IsReadOnly="False" RowIndicatorVisibility="Collapsed" Background="{Binding Source={StaticResource VAR-New},Path=VAR}" VirtualizingStackPanel.VirtualizationMode="Recycling" AutoGenerateColumns="False" engine:TreeViewDragDropBehavior.IsEnabled="True" IsDragDropEnabled="True" IsDragTooltipEnabled="False" CanUserDeleteRows="False" DragCueItemTemplate="{StaticResource FirstColumnCellTemplate}" Style="{StaticResource RadTreeListViewStyle1}" CellEditEnded="GridView_OnCellEditEnded" EnableColumnVirtualization="True" EnableRowVirtualization="True" MouseRightButtonDown="GridView_OnMouseRightButtonDown" Loaded="GridView_OnLoaded" Unloaded="GridView_OnUnLoaded"><telerik:RadTreeListView.ChildTableDefinitions> <telerik:TreeListViewTableDefinition ItemsSource="{Binding Items}"/></telerik:RadTreeListView.ChildTableDefinitions></telerik:RadTreeListView>So I would assume that the expander rows would not auto expand. However when I run this code that's exactly what happens. The auto expanders appear to be ignoring the false property and expanding.
How do I get this to work? What I want to happen is each expander row to stay closed and expand as the user selects them. I reviewed the .xaml.cs and there's no code there that is setting the expander property.
Cheers,
Caleb