From 47b56e2f5ab453cb901f01121f9e7fd943134fc5 Mon Sep 17 00:00:00 2001 From: KB Bot Date: Wed, 8 Oct 2025 06:44:57 +0000 Subject: [PATCH 1/2] Added new kb article dockmanager-add-content-pane-footer --- .../dockmanager-add-content-pane-footer.md | 93 +++++++++++++++++++ 1 file changed, 93 insertions(+) create mode 100644 knowledge-base/dockmanager-add-content-pane-footer.md 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..18f02931f --- /dev/null +++ b/knowledge-base/dockmanager-add-content-pane-footer.md @@ -0,0 +1,93 @@ +--- +title: How to Add a Footer to the DockManagerContentPane +description: Learn how to add a fixed footer to the DockManagerContentPane. +type: how-to +page_title: How to Add a Fixed Footer to DockManagerContentPane in UI for Blazor +meta_title: How to Add a Fixed Footer to DockManagerContentPane in UI for Blazor +slug: dockmanager-kb-add-content-pane-footer +tags: dockmanager, content, pane, footer, header, fixed +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 + + + + + + + + +
+ Custom Header for Pane 1.1 +
+
+ +
+ +
+ @for (int i = 1; i <= 30; i++) + { +
Scrollable content line @i
+ } +
+ + +
+ Custom Footer (Fixed) +
+
+
+
+ + + + Second Content Pane in Split configuration + + + +
+
+ + + + + + + First Tab Content + + + + + + Second Tab Content + + + + + +
+
+```` + +## See Also +- [DockManager Documentation](slug:dockmanager-overview) From e24b225d0db6a7ea429aeef830e7ed938bd5adbf Mon Sep 17 00:00:00 2001 From: Hristian Stefanov Date: Mon, 13 Oct 2025 17:11:45 +0300 Subject: [PATCH 2/2] chore(DockManager): apply suggestions as per comments --- .../dockmanager-add-content-pane-footer.md | 74 +++++++++---------- 1 file changed, 33 insertions(+), 41 deletions(-) diff --git a/knowledge-base/dockmanager-add-content-pane-footer.md b/knowledge-base/dockmanager-add-content-pane-footer.md index 18f02931f..9ad12b1cb 100644 --- a/knowledge-base/dockmanager-add-content-pane-footer.md +++ b/knowledge-base/dockmanager-add-content-pane-footer.md @@ -1,11 +1,11 @@ --- -title: How to Add a Footer to the DockManagerContentPane -description: Learn how to add a fixed footer to the DockManagerContentPane. +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 a Fixed Footer to DockManagerContentPane in UI for Blazor -meta_title: How to Add a Fixed Footer to DockManagerContentPane in UI for Blazor +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: dockmanager, content, pane, footer, header, fixed +tags: blazor, dockmanager, footer res_type: kb ticketid: 1700189 --- @@ -31,62 +31,54 @@ To add a fixed footer below a scrollable content in a `DockManagerContentPane`, ````Razor - - + - - - -
- Custom Header for Pane 1.1 -
-
+ -
- -
+
+
@for (int i = 1; i <= 30; i++) {
Scrollable content line @i
}
- - -
- Custom Footer (Fixed) +
- Second Content Pane in Split configuration - - - - - - - - First Tab Content - - - - - - Second Tab Content - - - - - + + ```` ## See Also