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
1
vote
2 answers

How to show past dates as disabled dates in kendo date picker

Hi I am using Kendo Date Picker for Kendo Angular UI. I am using min and max attribute of date picker to restrict user to select from specific range of date. But this completely Hide the out of the range dates likes this. Instead I wanted to show…
1
vote
1 answer

Kendo MVC - Need DatePicker in a Grid

I have the following grid with a date picker: @(Html.Kendo().Grid() .Name("ScheduleGrid") .AutoBind(true) - ) .Editable(editable => editable.Mode(GridEditMode.InCell)) …
Scott
  • 2,456
  • 3
  • 32
  • 54
1
vote
1 answer

Kendo UI Datepicker with custom format of "MMMyy"

I am trying to create a kendo datepicker for a binded model field, but with a format of "MMMyy" as opposed to a full date. The user needs to see the date in the format "MMMyy". Here is my model field: [DisplayFormat(DataFormatString =…
Johnathan
  • 879
  • 3
  • 12
  • 22
1
vote
1 answer

how to open the kendo angular datepicker popup using javascript

i cant find a way to open the kendo angular(2+) datepicker from JS. i want to have my own datepicker icon , hiding the default controller ( input field and icon using visibility: hidden; ) and to open the popup when my icon is clicked. in the api…
1
vote
2 answers

kendo-datepicker format date onChange($event) in Angular

We are using Angular 6, .NET mvc framework. Based on date selection, I need to pass it to a function and populate a dropdown. But I am not retrieving the date in correct format. Here is the html:
SilverFish
  • 1,014
  • 6
  • 28
  • 65
1
vote
1 answer

KendoDatePicker date format as "21 Aug 2018"

I'm using KendoDatePicker in my application. I want the datepicker to show the date in the format "21 Aug 2018". How can this be possible with kendo ?
Agil C
  • 71
  • 1
  • 8
1
vote
1 answer

How/Can I add a data- attribute to a Kendo DatePicker?

I have a requirement to add a data- attribute to a Kendo DataPicker object. However, I do not see an intuitive way to do it. There's only 'name' and 'htmlattributes' which only appears to accept 'style', 'title', and 'id'. I need this for jQuery…
Beau D'Amore
  • 3,174
  • 5
  • 24
  • 56
1
vote
1 answer

How do I determine final ValueChange event on Kendo Angular DatePicker

I need to set min and max dates for a Kendo Angular DatePicker. This is pretty straight forward using [(max)]="maxDate" and [(min)]="minDate" and this works when using a mouse and clicking the DatePicker. The problem is when using keyboard entry a…
Bruce C
  • 349
  • 1
  • 6
  • 17
1
vote
2 answers

The Kendo Datepicker change event does not fire until I click outside of Datepicker control

I have the following ASP.NET MVC form with a datepicker change event:
@using (Html.BeginForm("Reload", "DateOfFile", FormMethod.Post, new { returnUrl = this.Request.RawUrl, id = "formDate" })) { …
gene
  • 2,098
  • 7
  • 40
  • 98
1
vote
2 answers

Kendo UI datepicker - month change event

Kendo UI datepicker - month change event I searched for this here & on Telerik forum too but don't have the solution for this. Here, I want to mark few dates from month and I did it on OPEN event like below- $.each(dates, function (index, date) { …
1
vote
1 answer

Kendo DatePickerFor issue in Chrome version 56.0.2924

I am using Kendo DatePickerFor. After I recently updated my Chrome browser, it shows a blank value in the date picker control. I am using it for month selection with MMM yyyy format. Can anybody please help me out? My previous chrome version was…
1
vote
1 answer

ngChange doesn't work for kendo-date-picker which defined in kendo.toolbarOptions

I want to bind ngChange event to kendo-date-picker, the date picker defined in the toolbarOptions, but the ngChange doesn't work. $scope.toolbarOptions = { items: [{ template: "" }, { …
1
vote
1 answer

Kendo custom validation for datepicker

I'm having problem with kendo datepicker custom validation (There is actually not many examples found on the web for custom validation in angular way). I have set the min value of the datepicker but it only works if the user choose the date from the…
1
vote
3 answers

kendo datepicker default load by custom year and month

Text box should be empty and when i click on calendar icon then data picker load from my custom data, For example i will set 1 December 2020
V J I
  • 79
  • 3
  • 7
1
vote
0 answers

Angular 2 model property not picking up the updated date value from Kendo UI Date Picker

I am writing an angular application where in I want to call the API on the basis of updated value of the Kendo Date Picker. Kendo Date Picker is bound to the Angular Model However, after changing the date, I get the same old value (initially…