diff --git a/knowledge-base/grid-dynamically-updating-filtermenutemplate-value.md b/knowledge-base/grid-dynamically-updating-filtermenutemplate-value.md
new file mode 100644
index 0000000000..979a7e1238
--- /dev/null
+++ b/knowledge-base/grid-dynamically-updating-filtermenutemplate-value.md
@@ -0,0 +1,206 @@
+---
+title: FilterMenuTemplate Not Updating After Dynamic Value Change
+description: Learn how to refresh and update the displayed value within a FilterMenuTemplate when its value changes dynamically in Grid for Blazor.
+type: troubleshooting
+page_title: Refreshing FilterMenuTemplate to Reflect Dynamic Value Changes in Blazor Grid
+slug: grid-kb-dynamically-updating-filtermenutemplate-value
+tags: grid, blazor, filter, filtermenutemplate
+res_type: kb
+ticketid: 1677674
+---
+
+## Environment
+
+
+
+
+
Product
+
Grid for Blazor
+
+
+
+
+## Description
+
+I have a custom `FilterMenuTemplate` for a column where a slider is shown. Although filtering works as expected, the `` within the `FilterMenuTemplate` that is supposed to show the current selected value does not update when the slider value changes.
+
+## Cause
+
+The [`FilterMenuTemplate`](slug:grid-templates-filter#filter-menu-template) does not refresh automatically when the value bound to a control within it, such as a slider, changes dynamically.
+
+## Solution
+
+To resolve this issue, encapsulate the content of the `FilterMenuTemplate` in a separate Razor component. Then, refresh this component upon any value change in the Slider. This approach ensures that the displayed value updates dynamically to reflect the current selection. Follow the steps below to implement this solution:
+
+1. Create a separate Razor component (for example, `CustomFilterMenu.razor`) that will contain the `FilterMenuTemplate` content, including the slider and the span displaying the selected value.
+
+2. In your `CustomFilterMenu.razor`, define the necessary parameters and logic to handle the value change and update the display.
+
+3. Use this component within the `FilterMenuTemplate` of the desired column in your Grid.
+
+4. Ensure that any value change in the slider triggers the component's refresh to update the displayed value accordingly.
+
+`````RAZOR
+@using Telerik.DataSource
+
+
+
+
+
+
+
+
+
+
+
+
+ @foreach (var size in Sizes)
+ {
+