ButtonGroup supports RTL functionality. This can be achieved by adding e-rtl
class to the target element.
The following example illustrates how to create ButtonGroup with RTL support.
<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();
}