Right To Left in Check Box Control
19 Dec 20221 minute to read
CheckBox component has RTL support. This can be achieved by setting enableRtl as true
.
@Html.EJS().CheckBox("cbox2").Label("Default").EnableRtl(true).Render()
<style>
.e-checkbox-wrapper {
margin-top: 18px;
}
li {
list-style: none;
}
</style>
public ActionResult Rtl()
{
return View();
}
NOTE