Contact Support
RTL support
19 Apr 20172 minutes to read
In some cases, it is necessary to use right to left alignment. You can render RTL support by using enableRTL property. In RTL mode, when there is more than one content (image/text, image/image) in button, then the content is aligned in right to left format. For example, when text is in left and image is in right position, after applying right to left alignment these positions are interchanged.
The following steps explains you the details about rendering the Toggle Button with Right to left alignment support.
In the HTML page, add the following button elements to configure Toggle Button widget.
<input type="checkbox" id="toggle_rtl" />
$(function () {
$("#toggle_rtl").ejToggleButton({
size: "small",
imagePosition: "imageleft",
contentType: "textandimage",
showRoundedCorner: true,
defaultText: "Play",
activeText: "Next",
defaultPrefixIcon: " e-icon e-mediaplay",
activePrefixIcon: " e-icon e-mediapause",
//used to enable or disable RTL support for toggle button
enableRTL: true
});
});
In above mentioned code example prefixIcon property is used and the icon that is to be on left side, (before text) is rendered on right side as enableRTL property is used with prefixIcon. Consequently, the alignment is changed in right to left order.
Output of above steps