Globalization in Blazor Pager Component
18 Nov 20251 minute to read
This article explains how to localize the Syncfusion® Blazor Pager component and how to enable right-to-left (RTL) rendering.
Localization
The Syncfusion® Blazor Pager component supports localization, allowing text and UI elements to adapt to various languages and cultural formats.
Refer to the Blazor Localization guide for detailed configuration steps.
Right to left (RTL)
The Syncfusion® Blazor Pager component supports right-to-left (RTL) rendering for languages such as Arabic, Farsi, and Urdu. RTL can be enabled by configuring the Syncfusion Blazor service during application startup.
Register the EnableRtl option in Program.cs:
builder.Services.AddSyncfusionBlazor(options => { options.EnableRtl = true; });@using Syncfusion.Blazor.Navigations
<SfPager TotalItemsCount="20" NumericItemsCount="5" PageSize="5"></SfPager>For more details, refer to the Right-to-Left guide for detailed configuration steps.