RTL Support

In some cases, where you want to display the content in Right to Left direction, you can use RTL support by using the EnableRTL property. In RTL mode, when you have more than one content (image/text, image/image) in button, then these content are aligned in right to left format. With this property enabled, the Groupbutton items are rendered in reverse order.

In the view page, add the following Groupbutton to configure the Items with Right to left alignment

  • HTML
  • <%--Enable the alignment format for GroupButton control as follows--%>
    
     @Html.EJ().GroupButton("GroupButton").EnableRTL(true).Items(item =>
                       {
                           item.Add().Text("Save");
                           item.Add().Text("Open");
                           item.Add().Text("Delete");
                       })

    Here the items are rendered in the reverse order.