Blazor Toolkit

Right-to-left (RTL) support

Right-to-left (RTL) layout can be enabled for Syncfusion® Blazor Toolkit components by setting the EnableRtl option to true when configuring Syncfusion services in Program.cs. This sets the default RTL behavior for all Toolkit components.

Enable RTL For All Components

For a Blazor Server or Server-Side Blazor app, configure RTL globally in Program.cs as shown below:

Program.cs

using Syncfusion.Blazor.Toolkit;

builder.Services.AddSyncfusionBlazorToolkit(options =>
{
	options.EnableRtl = true;
});

For a Blazor WebAssembly standalone app, enable RTL during host builder setup in Program.cs as shown below:

Program.cs

var builder = WebAssemblyHostBuilder.CreateDefault(args);
// register Toolkit services with RTL enabled
builder.Services.AddSyncfusionBlazorToolkit(options =>
{
	options.EnableRtl = true;
});
await builder.Build().RunAsync();

Rejoining the server...

Rejoin failed... trying again in seconds.

Failed to rejoin.
Please retry or reload the page.

The session has been paused by the server.

Failed to resume the session.
Please retry or reload the page.