Hello Team,
We are in the process of converting to Telerik 2011 version from the old version. In the previous version our main screen was working fine. Now we are having an issue.
This is the situation.
We have a RadPane with a Item control in it. when we try to resize the RADPane, instead of adjusting the size of the adjcent pane, adjcent pane is getting overlapped on the RADPANE. Because of this overlapping, user is not able to see the scorll bar, which is available in the RADPANE.
How do I solve this issue? I have attached the picture to show the problem.
Code:
<
radDock:RadDocking
Grid.Row
=
"1"
x:Name
=
"mainDockSite"
Background
=
"White"
Close
=
"mainDockSite_Close"
PreviewClose
=
"mainDockSite_PreviewClose"
>
<
radDock:RadSplitContainer
radDock:DockingPanel.InitialSize
=
"183,150"
MaxWidth
=
"600"
Name
=
"LeftContainer"
InitialPosition
=
"DockedLeft"
>
<
radDock:RadPaneGroup
>
<
radDock:RadPane
Header
=
"Navigator"
CanUserClose
=
"False"
CanUserPin
=
"False"
Name
=
"Navigator"
>
<
DockPanel
LastChildFill
=
"True"
HorizontalAlignment
=
"Stretch"
>
<
ItemsControl
DockPanel.Dock
=
"Top"
HorizontalAlignment
=
"Stretch"
VerticalAlignment
=
"Stretch"
VerticalContentAlignment
=
"Stretch"
Name
=
"PanelBarRegion"
cal:RegionManager.RegionName
=
"PanelBarRegion"
>
<
ItemsControl.ItemsPanel
>
<
ItemsPanelTemplate
>
<
DockPanel
HorizontalAlignment
=
"Stretch"
LastChildFill
=
"True"
/>
</
ItemsPanelTemplate
>
</
ItemsControl.ItemsPanel
>
</
ItemsControl
>
</
DockPanel
>
</
radDock:RadPane
>
</
radDock:RadPaneGroup
>
</
radDock:RadSplitContainer
>