To set the RTL direction in your Form, follow the next steps:
1. Create and Select a theme with the following CSS rules:
h3, p { text-align: right; } .control-label { float: right; direction: rtl; /*unicode-bidi: bidi-override;*/ } .radio-inline { float: right; }
User Manual | http://easyforms.baluart.com/docs/theme-manager.html
2. Load a javascript file with the following content:
$( document ).ready(function() { $('form').find(':input').attr('dir', 'rtl'); });
User Manual | http://easyforms.baluart.com/docs/form-manager.html#form-settings-ui
And that’s all!