admin管理员组文章数量:1341431
I have the following code:
$('.custom_datepicker_selector').datepicker({
weekStart: 1
})
.on('changeDate', function(en) {
var correct_format;
correct_format = en.date.getFullYear() + '-' + ('0' + (en.date.getMonth() + 1)).slice(-2) + '-' + ('0' + en.date.getDate()).slice(-2);
$('.custom_datepicker_selector').datepicker('hide');
return $(this).parent().find("input[type=hidden]").val(correct_format);
});
This displays the date format just like I want it to. However it only does so after I click on the datepicker, not initially.
Initially this date is shown:
2013-02-17
and after I click on it I get this:
17/02/2013
How can I display the correct date immediately? (the code above is in the .ready
I created a jsFiddle for this: /
This was more a rails problem than a javascript:
I followed abu advice and did it like this in rails:
<%= f.input :order_date, :as => :custom_datepicker, :input_html => { :value => localize(@client_order.order_date) } %>
I have the following code:
$('.custom_datepicker_selector').datepicker({
weekStart: 1
})
.on('changeDate', function(en) {
var correct_format;
correct_format = en.date.getFullYear() + '-' + ('0' + (en.date.getMonth() + 1)).slice(-2) + '-' + ('0' + en.date.getDate()).slice(-2);
$('.custom_datepicker_selector').datepicker('hide');
return $(this).parent().find("input[type=hidden]").val(correct_format);
});
This displays the date format just like I want it to. However it only does so after I click on the datepicker, not initially.
Initially this date is shown:
2013-02-17
and after I click on it I get this:
17/02/2013
How can I display the correct date immediately? (the code above is in the .ready
I created a jsFiddle for this: http://jsfiddle/jwxvz/
This was more a rails problem than a javascript:
I followed abu advice and did it like this in rails:
<%= f.input :order_date, :as => :custom_datepicker, :input_html => { :value => localize(@client_order.order_date) } %>
Share
Improve this question
edited Feb 17, 2013 at 9:47
rept
asked Feb 17, 2013 at 9:04
reptrept
2,2461 gold badge29 silver badges46 bronze badges
2 Answers
Reset to default 6You can define the default date format also.
Try this out:
$('.custom_datepicker_selector').datepicker({
weekStart: 1,
dateFormat: 'dd/mm/yy'
}).on('changeDate', function(en) {
$('.custom_datepicker_selector').datepicker('hide');
return $(this).parent().find("input[type=hidden]").val(en);
});
UPDATE : (important)
I have seen your JSFiddle, you have kept the default value of the textbox as value="2013-02-17"
that's why it shows that value at start just remove it.
just you have to use:
$('.custom_datepicker_selector').datepicker({
weekStart: 1,
dateFormat:'yy-mm-dd'
})
you can reference here : link
本文标签: javascriptjQuery trigger a DatePicker change eventStack Overflow
版权声明:本文标题:javascript - jQuery trigger a DatePicker change event - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743669694a2519326.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论