RTL Support

10 Jan 20181 minute to read

The Textbox provides RTL (Right-To-Left) support. The alignment of CurrencyTextBox can be changed from Left-To-Right into Right-To-Left.

Enable RTL

The following steps explain the implementation of enableRTL in CurrencyTextBox.

In the HTML page set the corresponding <input> elements for rendering CurrencyTextBox controls.

  • HTML
  • <input id="currency" type="text" />
  • JAVASCRIPT
  • $("#currency").ejCurrencyTextbox({
                value: 33,
                enableRTL: true
            });

    The output for CurrencyTextBox when enableRTL is “true” is as follows.