Questions tagged [kendo-datetimepicker]

Kendo-datetimepicker allows the user to select a date and a time and to display the date and time with a specified format.

The Kendo datetimepicker is a Kendo-UI widget that can be theme able as well as allowing various customization.

  • Supports globalization
  • Easily set timezone
  • In-built range selection functionality
  • Supports keyboard navigation

Resources


Related tags

72 questions
0
votes
1 answer

When using kendo-datetimepicker is there a way to overwrite the default time

I'm using Kendo UI for Angular's DateTimePicker. When I open the overlay to select a date the default time is set to 12:00 AM Is there a way I can…
0
votes
1 answer

Set Kendo Datetimepicker based on previous Datetimepicker

I have two Kendo Datetimepickers, 'OvertimeDateFrom' and 'OvertimeDateTo' that a user must select for completing an Overtime request. When a user selects the date and time from 'OvertimeDateFrom', I would then like to set 'OvertimeDateTo' to the…
Scanner
  • 597
  • 1
  • 9
  • 19
0
votes
0 answers

How to set start day of the week as Monday in kendo-datepicker for Angular

I need to use kendo in my Angular project. But the requirement is once the date selection popup is open, starting day of the week should be Monday instead of Sunday which is the default behavior. Current behavior:
aks44
  • 422
  • 3
  • 12
0
votes
1 answer

Prevent DateTimePicker from autoclose

I have a kendo component kendo-datetimepicker (angular project, kendo-angular) When I open the calendar, start typing the date (day, month, year) and time (hours, minutes) in the input, right at the end when I select minutes - the calendar closes…
0
votes
0 answers

Kendo DateTimePicker Customization Issues

I am facing one challenges, my requirement is to make datetimepicker as same as http://dojo.telerik.com/OrIrINir UI. I am using angular 9. I am unable to make datetimepicker UI as same as given in the link using angular 9. I gone through the…
0
votes
0 answers

Calendar and Time picker not opening in Kendo Grid when upgraded to Kendo 2020.1.219

When i am clicking on the calendar and clock icon in datepicker it is going to the start of the grid and none of the date or time picker is opening and in one case the icon is also not loading. this is happening when i have upgraded kendo from…
0
votes
0 answers

Kendo MVC Date Picker - Loading date in yy/MM/dd format

Im trying to display (load date picker with a value for editing) a date value with in cshtml view in 'yy/MM/dd' format using Kendo MVC Date picker, but it does not show the value. Below is the ASP.NET MVC model - Date Property, [Display(Name =…
0
votes
0 answers

Kendo Grid datetime filtering

I am using Kendo Grid. The problem I am facing is that I am not able to filter the datetime by selecting any option from filter. Here is my code: @(Html.Kendo() .Grid() .Name("grid") .Columns(columns => { …
0
votes
1 answer

Day not selected when bound to kendo UI datepicker control in angular application

I am using kendoUI datepicker control in my angular 7 application. At the moment I am trying to bind json date returned by the api to the datepicker control. The code below does the job but shows only the month and year. It doesnt show the exact…
Tom
  • 8,175
  • 41
  • 136
  • 267
0
votes
1 answer

Binding date value to Angular Kendo Date Picker Typescript

I have an API which returns the date in this format 2018-12-24T16:00:00.000Z (ISO string). I am using Angular, Kendo UI and Typescript. The problem that I am facing is the date is not getting bound to the Kendo date picker. I have read the…
0
votes
4 answers

How to convert "12/20/2018 1:30 AM" format to the YY-MM-DD hh:mm:ss in angular js?

I have to store the date in the database using this format YY-MM-DD hh:mm:ss but I get this 12/20/2018 1:30 AM after select date from the kendo-datetime picker. I have tried fomat="YY-MM-SS hh:mm:ss" but its not working every time getting above…
Kapil Soni
  • 1,003
  • 2
  • 15
  • 37
0
votes
0 answers

Adding validation in two controls alert becomes recursive

I have a datepicker, textbox and validation in their blur event. If validation fails for datepicker I am showing a message to user. But it shows immediately the validation message of textbox. And it becomes recursive. Message appears all the time.…
0
votes
1 answer

Assign a saved datetime value in database to Datepicker value

I have a kendo-datepicker in my page to insert date to table and this works fine I use the same web page to show the details of the saved record this.paymentDate…
Tom
  • 175
  • 1
  • 14
0
votes
1 answer

Issue with kendo datetime picker in google chrome, closes automatically

I have issues with the kendo ui datetimepicker under google chrome. For some reason, the control close automatically after i try to open it(see gif for reference). datetimepicket_Error.gif Chrome Version: 63.0.3239.132 (Official Build)…
0
votes
2 answers

Kendo Datetime picker sending null into controller

I have a form using html helpers like this: @using (Html.BeginForm("GuardarCliente", "Cliente")) { @Html.LabelFor(m => m.FechaDeNacimiento) @Html.TextBoxFor(m => m.FechaDeNacimiento, new { @class = "form-control", placeholder = "Fecha de…