Right-To-Left

24 Feb 20221 minute to read

Right To Left (RTL) can be enabled for Essential JS 2 components by calling enableRtl with true. This will render all the Essential JS 2 components in right to left direction. Find the code snippet for this below.

<script>
    // Enables Right to left alignment for all controls
    ej.base.enableRtl(true);
</script>

Enable RTL to individual component

To control a component’s direction individually you can directly set the component’s EnableRtl property as true. For illustration, we have enabled RTL for Button component in following code snippet.

@Html.EJS().Button("normalbtn").EnableRtl(true).Content("Normal").Render()