Questions tagged [kendo-datepicker]

Represents the Kendo UI DatePicker widget

Kendo datepicker is a component of KendoUI for providing visual date selection.


Related tags

185 questions
24
votes
6 answers

Set Today date to kendo datepicker

I want to set today date to Kendo DatePicker on clear button click. I tried following but it is not working. $('#btnClear').click(function () { $("#StartDate").data("kendoDatePicker").value(new Date()); }); Above code don't give any error and…
Dhwani
  • 7,484
  • 17
  • 78
  • 139
16
votes
1 answer

How Do I Raise the Change Event in the KendoUI DatePicker?

I'm trying to set the value of my DatePicker using the code below and expecting the "Change" event to be raise but it doesn't. var datePicker = $("#datePicker").data("kendoDatePicker"); var previousDate = new…
JeeShen Lee
  • 3,476
  • 5
  • 39
  • 59
9
votes
3 answers

The 'value' should be a valid JavaScript Date instance

i'm working on a asp.net - angular 5 web application, I need to load a component with empty fields to fill, some of this fields are KendoDatePicker (for Angular), I need to choose if select(insert) or not a date, when I load the component Date is…
JJkramar
  • 91
  • 1
  • 3
8
votes
3 answers

How do you make a kendo datepicker do date validation for a minimum date?

I have the following control: @(Html.Kendo().DatePickerFor(model => model.Attributes.DueDate) .HtmlAttributes(new { ID = "idSurvey_DueDate", @data_bind = "value: DueDate", @Class = "report-label datepicker…
hyprsleepy
  • 1,810
  • 6
  • 25
  • 35
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
2 answers

Kendo Datepicker: changing its size or fonts inside

I've got a Kendo Datepicker that I'm displaying inside a Kendo Window and it shows like this: The Datepicker is somehow bloated, with larger than usual fonts and size. Outside the Kendo window, the datepicker displays fine. Now, I was wondering if…
chiapa
  • 4,362
  • 11
  • 66
  • 106
5
votes
1 answer

Is there a way I can prevent a kendo datepicker calendar pop-up from closing when clicking on a known container which is outside of the datepicker?

I'm using the kendo datepicker and I have added a textarea at the bottom of the pop-up calendar for users to add comments when changing a date. I have the comments area showing when the datepicker shows but when I click on the textarea to enter…
Ovi
  • 604
  • 8
  • 16
4
votes
1 answer

Kendo AngularJS DatePicker custom validation

How do I get custom validation working for the Kendo Angular directive DatePicker? I want to implement the following example but using the Angular directive version of the DatePicker: KendoUI DatePicker validation when multiple date fields are on a…
Myles J
  • 2,839
  • 3
  • 25
  • 41
3
votes
1 answer

Disable Future Dates in Kendo Angular DatePicker

This question is related to: How to disable past dates without hiding them in Kendo date picker? . This is my HTML markup:
Ravimallya
  • 6,550
  • 2
  • 41
  • 75
3
votes
2 answers

Kendo Datepicker format not changing

I've got a Kendo Datepicker which displays as dd/MM/yyyy, which is fair enough. However, I'm wanting to change it to MM/dd/yyyy but whenever I do (by changing format in the below), it either remains at dd/MM/yyyy or becomes blank:
user25730
  • 517
  • 2
  • 6
  • 24
3
votes
3 answers

Kendo Scheduler DatePicker events

How can I set event for Kendo Scheduler Start and End date DatePicker control? I want to put some logic when Start or End date changes from DatePicker control but I don't know how to do. I tried to bind event like below but it is not working for…
Dhwani
  • 7,484
  • 17
  • 78
  • 139
3
votes
1 answer

Kendo DatePicker Return wrong value

I set the format of my date in this way: $('#filterdate').kendoDatePicker({format: "dd/MM/yyyy"}); SOMEWHERE I have code which set (#filterdate) #filterdate is 10/7/2014 but when I use this code…
Sara N
  • 1,079
  • 5
  • 17
  • 45
3
votes
3 answers

kendo Datepicker: Prevent closing picker when clicking a date

When I change the date in the picker then the picker is getting hidden, How can skip this behavior in kendo ui datePicker
3nath
  • 223
  • 4
  • 12
3
votes
4 answers

Default date format of Javascript/Jquery

I have a kendo date picker which is set to format date as "MM/dd/yyyy". I want to check using jquery/javascript that if kendo date picker date must not be future date and date must be greater than '01/01/1900'. The issue I am facing is when I take…
Dhwani
  • 7,484
  • 17
  • 78
  • 139
3
votes
1 answer

How can I create a datepicker using kendo UI core

I downloaded Kendo UI Core, then included the kendo.ui.core.min.js and kendo.bootstrap.min.css files. Added the bundles etc.. So I was trying to create a datepicker doing this
DeadlyChambers
  • 5,217
  • 4
  • 44
  • 61
1
2 3
12 13