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
Hi,
many thanks for reporting an issue. I'll try to get into it asap. In the meanwhile, please let me know, if you were testing with master branch or release? Because i recently fixed some timezone issues, although i think that this is another one...
Best regards, Rafael
Hi, this is probably really basic but I can work out how to do it!
Currently the input is submitting with...
<input id="observation_observed_on_hidden" type="hidden" value="2016-05-21 12:42:42 -0400" name="observation[observed_on]">
but how can I get it to submit without the timezone as...
<input id="observation_observed_on_hidden" type="hidden" value="2016-05-21 12:42:42" name="observation[observed_on]">
I'm calling the datepicker with...
<%= f.datetime_picker :observed_on, value: Time.zone.now.strftime("%FT%R"), required: true, step: 1, max: Time.zone.now.strftime("%FT%R"), data: { showTodayButton: true, keepOpen: false, allowInputToggle: true, sideBySide: true, maxDate: 'now' } %>
The text was updated successfully, but these errors were encountered: