I have a datetimepicker.
<div class="EditLabel">
<label for="DueDate" class="control-label">Due Date</label>
<input kendo-date-time-picker k-onkeyup="'yyyy-MM-dd hh:mmtt'" k-format="'yyyy-MM-dd hh:mmtt'" k-options="dateTimePickerOptions"
id="picker" ng-bind="DueDate" k-ng-model="DueDate" ng-model="MarketingItem.DueDate" class="form-control input-sm" />
</div>
$scope.dateTimePickerOptions = {
format: "MM/dd/yyyy hh:mmtt"
}
when user selects a date, i want to default the time to be 5:00PM instead of 12:00AM. if the user selects a different time, i want the value to be set accordingly.
Can you please tell me how i can accomplish that? I am using angular 1. thanks.