You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
a 'direction' option is needed, which should affect the ui elements rendering
I made it work as 'rtl' by just 2 minor changes
1- in the selectize.js file, hideInput method should position the input at (1000) positive value, instead of the current (-1000) negative value
2- in the selectize.default.css file, inside the css selector (.selectize-control.single .selectize-input:after) you need to change (right: 15px;) to (left: 15px;)
The text was updated successfully, but these errors were encountered:
Thanks for the walkthough, @AhmedMozaly! If you get a chance, do you mind checking out the 0.8 branch and giving a shot? There's a "rtl.html" demo in the examples folder. You'll need to run make first.
It seems to work pretty well, but I'm unsure of the proper behavior with backspace / delete key in an RTL environment. Any thoughts?
a 'direction' option is needed, which should affect the ui elements rendering
I made it work as 'rtl' by just 2 minor changes
1- in the selectize.js file, hideInput method should position the input at (1000) positive value, instead of the current (-1000) negative value
2- in the selectize.default.css file, inside the css selector (.selectize-control.single .selectize-input:after) you need to change (right: 15px;) to (left: 15px;)
The text was updated successfully, but these errors were encountered: