diff --git a/knowledge-base/dockmanager-add-content-pane-footer.md b/knowledge-base/dockmanager-add-content-pane-footer.md new file mode 100644 index 000000000..9ad12b1cb --- /dev/null +++ b/knowledge-base/dockmanager-add-content-pane-footer.md @@ -0,0 +1,85 @@ +--- +title: Add Fixed Footer to Scrollable DockManager Content Pane +description: Learn how to add a fixed footer at the bottom of a scrollable DockManagerContentPane in a Telerik DockManager for Blazor. +type: how-to +page_title: How to Add Fixed Footer to Scrollable DockManager Content Pane +meta_title: How to Add Fixed Footer to Scrollable DockManager Content Pane +slug: dockmanager-kb-add-content-pane-footer +tags: blazor, dockmanager, footer +res_type: kb +ticketid: 1700189 +--- + +## Environment + + + + + + + +
ProductDockManager for Blazor
+ +## Description + +I want to add a footer below the content block in the [`DockManagerContentPane`](slug:dockmanager-pane-types) component. The footer should remain fixed while the content block is scrollable. + +## Solution + +To add a fixed footer below a scrollable content in a `DockManagerContentPane`, define a `div` container with `display: flex; flex-direction: column;` and set the scrollable content and footer as separate sections. + +````Razor + + + + + + +
+
+ @for (int i = 1; i <= 30; i++) + { +
Scrollable content line @i
+ } +
+ +
+
+
+ + + Second Content Pane in Split configuration + + +
+
+
+
+ + +```` + +## See Also +- [DockManager Documentation](slug:dockmanager-overview)