This question is locked. New answers and comments are not allowed.
Hi, I have the following markup:
And the contents of the RadDocumentPane will never scroll (scrollbars never appear) no matter how large the grid gets. Any ideas as to what's causing this?
I also noticed the contents of the panes in this example never scroll either: http://demos.telerik.com/silverlight/#Docking/FirstLook
<
telerikDocking:RadDocking
>
<
telerikDocking:RadSplitContainer
x:Name
=
"searchSplitContainer"
Orientation
=
"Horizontal"
InitialPosition
=
"DockedBottom"
telerikDocking:DockingPanel.InitialSize
=
"350,350"
ScrollViewer.HorizontalScrollBarVisibility
=
"Visible"
ScrollViewer.VerticalScrollBarVisibility
=
"Visible"
>
<
telerikDocking:RadPaneGroup
x:Name
=
"searchPaneGroup"
Visibility
=
"Collapsed"
OverflowMode
=
"Scroll"
ScrollViewer.HorizontalScrollBarVisibility
=
"Visible"
ScrollViewer.VerticalScrollBarVisibility
=
"Visible"
>
<
telerikDocking:RadDocumentPane
x:Name
=
"searchDocumentPane"
Title
=
"Search"
CanFloat
=
"false"
CanUserClose
=
"False"
CanUserPin
=
"True"
CanDockInDocumentHost
=
"false"
>
<
telerikDocking:RadDocumentPane.Content
>
<
StackPanel
Background
=
"Transparent"
Orientation
=
"Vertical"
>
<
local:CustomGrid
x:Name
=
"searchGrid"
CanUserSelect
=
"False"
CanUserInsertRows
=
"false"
AutoGenerateColumns
=
"false"
ShowGroupPanel
=
"False"
RowIndicatorVisibility
=
"Collapsed"
RowDetailsVisibilityMode
=
"Collapsed"
>
</
local:CustomGrid
>
<
telerik:RadButton
x:Name
=
"SearchButton"
Content
=
"Search"
Click
=
"SearchButton_Click"
Width
=
"100"
HorizontalAlignment
=
"Right"
>
</
telerik:RadButton
>
</
StackPanel
>
</
telerikDocking:RadDocumentPane.Content
>
</
telerikDocking:RadDocumentPane
>
</
telerikDocking:RadPaneGroup
>
</
telerikDocking:RadSplitContainer
>
</
telerikDocking:RadDocking
>
And the contents of the RadDocumentPane will never scroll (scrollbars never appear) no matter how large the grid gets. Any ideas as to what's causing this?
I also noticed the contents of the panes in this example never scroll either: http://demos.telerik.com/silverlight/#Docking/FirstLook