I am using time_select helper on a site that has Right-To-Left Text ().
Therefore the time_select turns over in the html output (The hour select is before the minute select).
How can I make the minute select be before the hour select?
Thanks,
Oded
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
unlike the date_select, time_select doesn’t have an order option unfortunately.
What you could do:
time_selectand do a CSS trick and applyfloat: left;(or maybefloat: right;) to the minute select field, you can identify the minute select by the id which looks likeobjectname_fieldname_5iso if you calltime_select('myobject', 'myfield')the id ismyobject_myfield_5i