This question is locked. New answers and comments are not allowed.
I am using Telerik RadPanel and I have set it up this way on my page:
<telerik:RadDocking BorderThickness="0" Padding="0" Grid.Row="1" Opacity="1" Foreground="White" Background="White" BorderBrush="White">
<!--DocumentHost-->
<telerik:RadDocking.DocumentHost>
<telerik:RadSplitContainer>
<telerik:RadPaneGroup>
<telerik:RadDocumentPane Visibility="Collapsed" CanUserClose="False" BorderThickness="0">
<telerik:RadDocumentPane.Content>
<!-- PANE CONTENT GOES HERE -->
</telerik:RadDocumentPane.Content>
</telerik:RadDocumentPane>
</telerik:RadPaneGroup>
</telerik:RadSplitContainer>
</telerik:RadDocking.DocumentHost>
<telerik:RadSplitContainer InitialPosition="DockedLeft">
<telerik:RadPaneGroup>
<telerik:RadPane Header="Navigate" PaneHeaderVisibility="Collapsed" IsPinned="False" CanUserClose="False" CanDockInDocumentHost="False">
<telerik:RadPane.Content>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="500"></RowDefinition>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="200"></ColumnDefinition>
</Grid.ColumnDefinitions>
<StackPanel Orientation="Vertical">
<!-- STACK PANEL CONTENT GOES HERE -->
</StackPanel>
</Grid>
</telerik:RadPane.Content>
</telerik:RadPane>
</telerik:RadPaneGroup>
</telerik:RadSplitContainer>
</telerik:RadDocking>
The scenario here is: I have some button inside my left docked Rad Pane. When click on those buttons, I try to navigate to certain pages.
The problem is when I click on any of the buttons present inside the Rad Pane, The pane needs to hide by itself. But It stays just as is. I believe this is because after clicking the button, the focus still remains on button present inside the pane and hence, the docked pane doesn't get hidden by itself.
Can anyone provide me the solution for this.
<telerik:RadDocking BorderThickness="0" Padding="0" Grid.Row="1" Opacity="1" Foreground="White" Background="White" BorderBrush="White">
<!--DocumentHost-->
<telerik:RadDocking.DocumentHost>
<telerik:RadSplitContainer>
<telerik:RadPaneGroup>
<telerik:RadDocumentPane Visibility="Collapsed" CanUserClose="False" BorderThickness="0">
<telerik:RadDocumentPane.Content>
<!-- PANE CONTENT GOES HERE -->
</telerik:RadDocumentPane.Content>
</telerik:RadDocumentPane>
</telerik:RadPaneGroup>
</telerik:RadSplitContainer>
</telerik:RadDocking.DocumentHost>
<telerik:RadSplitContainer InitialPosition="DockedLeft">
<telerik:RadPaneGroup>
<telerik:RadPane Header="Navigate" PaneHeaderVisibility="Collapsed" IsPinned="False" CanUserClose="False" CanDockInDocumentHost="False">
<telerik:RadPane.Content>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="500"></RowDefinition>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="200"></ColumnDefinition>
</Grid.ColumnDefinitions>
<StackPanel Orientation="Vertical">
<!-- STACK PANEL CONTENT GOES HERE -->
</StackPanel>
</Grid>
</telerik:RadPane.Content>
</telerik:RadPane>
</telerik:RadPaneGroup>
</telerik:RadSplitContainer>
</telerik:RadDocking>
The scenario here is: I have some button inside my left docked Rad Pane. When click on those buttons, I try to navigate to certain pages.
The problem is when I click on any of the buttons present inside the Rad Pane, The pane needs to hide by itself. But It stays just as is. I believe this is because after clicking the button, the focus still remains on button present inside the pane and hence, the docked pane doesn't get hidden by itself.
Can anyone provide me the solution for this.