How to enable RTL in ASP.NET CORE Toggle Switch Button

21 Aug 20261 minute to read

Switch component has RTL support. This can be achieved by setting enableRtl as true.

The following example illustrates how to enable right-to-left support in Switch component.

<ejs-switch id="default" enableRtl="true"></ejs-switch>
public ActionResult Default()
    {
            return View();
    }