From 667b736e76fdda2aa53f4ce0a4663b0eda236ca1 Mon Sep 17 00:00:00 2001 From: Elena Peskova <116714417+elenapeskova@users.noreply.github.com> Date: Wed, 11 Feb 2026 16:07:03 +0400 Subject: [PATCH] Clarify language in README about DevExtreme Slider Updated wording for clarity in the README file. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 338653b..e5bbe23 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ # Blazor - Use DevExtreme Slider in Blazor Applications -This example adds a [DevExtreme Slider widget](https://js.devexpress.com/jQuery/Documentation/Guide/UI_Components/Slider/Overview/) to a Blazor application and showcases the following features and capabilities: +This example adds a [DevExtreme Slider widget](https://js.devexpress.com/jQuery/Documentation/Guide/UI_Components/Slider/Overview/) to a Blazor application and highlights the following features and capabilities: * Min and max labels * Tooltip customization @@ -43,8 +43,8 @@ Implement a Blazor component that wraps the DevExtreme Slider widget. The wrappe ``` * In the [OnAfterRenderAsync](./BlazorSlider/Components/Slider/DxSlider.razor#L66-L72) lifecycle method, calls the [LoadDxResources](https://docs.devexpress.com/Blazor/DevExpress.Blazor.DxResourceManager.LoadDxResources(Microsoft.JSInterop.IJSRuntime)) method to force the `Resource Manager` to load all client scripts. - * In the [OnParametersSetAsync](./BlazorSlider/Components/Slider/DxSlider.razor#L57-L64) lifecycle method, updates the internal model state and rerenders the slider component once Blazor parameters change. - * In the [UpdateValueFromClient](./BlazorSlider/Components/Slider/DxSlider.razor#L85-L91) method, synchronizes the server-side state with slider client-side value changes. + * In the [OnParametersSetAsync](./BlazorSlider/Components/Slider/DxSlider.razor#L57-L64) lifecycle method, updates the internal model state and re-renders the slider component once Blazor parameters change. + * In the [UpdateValueFromClient](./BlazorSlider/Components/Slider/DxSlider.razor#L85-L91) method, synchronizes server-side state with slider client-side value changes. ### Display a Blazor Component