Right-To-Left
17 Mar 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();
}