Hello.
We have functionality, which allows to set non-date(string "No due date") value on initialization, and after picking date(see ex. below)
Some time ago(I think it was happened after updating to one of the latest release) this functionality was broken.
Now after setting non-date value datepicker sets current date itself.
How we can repair our functionality? Is any workaround to set non-date value?
Example of our workaround, which now doesn't have effect:
function setDueDateToNoDueDate() {
$scope.dueDateWidget.value($scope._noDueDateText);
$scope.dueDateWidget.element[0].value = $scope._noDueDateText;
$scope.dueDateWidget.trigger("change");
}
We have functionality, which allows to set non-date(string "No due date") value on initialization, and after picking date(see ex. below)
Some time ago(I think it was happened after updating to one of the latest release) this functionality was broken.
Now after setting non-date value datepicker sets current date itself.
How we can repair our functionality? Is any workaround to set non-date value?
Example of our workaround, which now doesn't have effect:
function setDueDateToNoDueDate() {
$scope.dueDateWidget.value($scope._noDueDateText);
$scope.dueDateWidget.element[0].value = $scope._noDueDateText;
$scope.dueDateWidget.trigger("change");
}