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
10
votes
4 answers

Default Empty value in Kendo DatePicker

I need the default value of datetime picker to be empty. @(Html.Kendo().DatePickerFor(model => model.RevisionDate) .Name("RevisionDate") ) "RevisionDate" is a datetime property in a asp.net mvc model. how it's…
chamara
  • 12,649
  • 32
  • 134
  • 210
5
votes
1 answer

Kendo DateTimePicker set current hour 12:00 AM instead of DateTime.Now

As it can be seen on DateTimePicker / Basic usage, the example I used below sets the current hour 12:00 AM instead of DateTime.Now when pressing the link at the footer of DateTimePicker. How to fix it? @(Html.Kendo().DateTimePickerFor(m =>…
5
votes
1 answer

Kendo DateTime Filter Not Working In Grid

I am using Kendo Grid in which I have added a column for displaying date and time and I have used kendo grid date filter for filtering datetime. But the problem I am facing is that I am not able to filter the datetime by selecting isequalto option…
kumawatp
  • 323
  • 2
  • 4
  • 15
3
votes
2 answers

Kendo DateTimePicker not posting asp.net MVC

Im trying to post a form containing a dropdown with values and a starting and ending date and time. The problem is that when i post the form, it basicaly doesnt post. Instead of posting it is selecting the dateTimePicker input (because of the blue…
3
votes
2 answers

Get the selected Date and Time on KendoDateTimepicker

I am using a kendo DateTimepicker. I have a startdate and end date. when i select a start date i want the end date to be generated 30min more than the start date. For example if the selected start date is 5/11/2016 2.30PM i want the end date to be…
Nethra
  • 99
  • 1
  • 2
  • 13
3
votes
0 answers

How to parse string date format to kendo date

I have this date string copied from postgres database - 2000/12/22 03:50:14 I want to format it to something like this using kendo - Friday 22 Dec, 2000 03:50AM. Fiddle - http://jsfiddle.net/kKhm3/644/ CODE: var date1 = kendo.parseDate("2000/12/22",…
Ashwin
  • 12,081
  • 22
  • 83
  • 117
3
votes
1 answer

Kendo DateTimePicker set value from json result

I have a big trouble with pasting a value in Kendo DateTimePicker inside Kendo Grid from json result. So I have two forms on page. In first I'm loading file: @using (Html.BeginForm("GetImportSalesModelFromFile", "ExportImport", FormMethod.Post, new…
Rock'n'muse
  • 263
  • 5
  • 7
3
votes
3 answers

KendoUI DateTimePicker undefined on document.ready

I have a Kendo DateTimePicker control in an mvc (asp.net) partial view that I am trying to access from document.ready(): @(Html.Kendo().DateTimePickerFor(vvm => vvm.StartTime) .Name("dtpVisitStart") …
Mike Cheel
  • 12,626
  • 10
  • 72
  • 101
3
votes
1 answer

KendoDatePicker Multiple Formats

How to accept multiple formats in KendoDatePicker? For example, to declare multiple formats similar to this (if format were to accept an array). this.$('#dtToDate').kendoDatePicker({ value: new Date(), min: new Date(1950, 0,…
steamrolla
  • 2,373
  • 1
  • 29
  • 39
2
votes
1 answer

How can I constrain the start and end hours of the Kendo DateTimePicker?

I am using a KendoUI DateTimePicker in ASP MVC. When you select the time picker, you get hours from 00:00-24:00. This is unwieldly for people to scroll through. I only want 08:00-16:00 displayed, for any day. Is it possible to do that? Here is what…
redwards510
  • 1,802
  • 1
  • 17
  • 23
2
votes
2 answers

TypeError issue with angularjs ngIf

I have a simple ng-click event on a header that, when clicked, will hide the ng-repeat section from view. When you click the header again, the ng-repeat section will reappear. I also have a kendo-date-time-picker attribute on an input element that's…
matenji
  • 365
  • 3
  • 5
  • 12
2
votes
2 answers

How to get only year from kendo datepicker?

I want to get only year from kendo datepicker. var defaultyear = $("#datepicker").val(); // 2/22/2015 I want '2015'. I do not want to change display format. Thanks.
Ironman
  • 243
  • 1
  • 4
  • 15
2
votes
1 answer

Kendo Grid inline edit with Datetime DatePickerFor

kendo inline cell edit not support for datetime format. I need "dd/MMM/yyyy" data format but kendo grid shows "the filed date must be a date" error. can you please advice me to what to do
2
votes
2 answers

How to set default DateTime as empty in Kendo DateTime picker

I am using Kendo datetime picker, as per their documentation I have set the date time as mentioned below, but by default this piece of code is setting current date and time. But I am looking for something like date time picker should be empty and…
Abhinay
  • 338
  • 1
  • 7
  • 22
2
votes
3 answers

Hiding the Kendo UI DatePicker TextBox

I have an application where the users are used to a specifically formatted date, such as the following format ([] denotes a textbox): [Month] [Day] [Year] [Time] [AM/PM] Each component is a separate textbox, so what I would like to do is use the…
Brian Mains
  • 50,520
  • 35
  • 148
  • 257
1
2 3 4 5