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
When I select a date using
datepicker.set('select', dateObj);
the passed dateObj is modified. This behavior isn't documented and may lead to potential issues in the application code.
@amsul
I want event object for the selected date.
Currently my code is
$('#inputDate')
.attr('data-value', "2014-5-14");
DatepickerObject = $('#inputDate').pickadate({
'today' : '',
'close' : '',
'clear' : '',
onOpen : function() {
},
onSet : function() {
},
});
I want to get selected object touch positions.For example if I select any date, I want the co-ordinates of the selected date. i.e. x & y. Please help me here.
When I select a date using
datepicker.set('select', dateObj);
the passed dateObj is modified. This behavior isn't documented and may lead to potential issues in the application code.
Link to the code sample demonstrating the bug:
http://jsbin.com/regot/4/edit
The text was updated successfully, but these errors were encountered: