Enable RTL in Button Group Control

19 Dec 20221 minute to read

ButtonGroup supports RTL functionality. This can be achieved by adding e-rtl class to the target element.

<div class='e-btn-group e-rtl'>
    @Html.EJS().Button("html").Content("HTML").Render()
    @Html.EJS().Button("css").Content("CSS").Render()
    @Html.EJS().Button("javacript").Content("Javascript").Render()
</div>
public ActionResult Index()
    {
            return View();
    }

NOTE

View Sample in GitHub.