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
3
votes
1 answer

MVC Date Time Model Binding

I am using 2 kendo date pickers in my application as such:
Start Date:
@(Html.Kendo().DatePickerFor(m=>m.StartDate)) …
2
votes
1 answer

How to block off a date in Kendo DatePicker

Is there a way to block off a date with the Kendo DatePicker? So if they click open the calendar, and they want to select the 10th of December, I can have that date either disabled or removed ( preferrably disabled ). I don't see any documentation…
Keith
  • 4,059
  • 2
  • 32
  • 56
2
votes
1 answer

KendoGrid dynamic date filters in European format are getting reversed from dd/mm/yyyy to mm/dd/yyyy

I have a KendoGrid with a filterable European format date column with date operators for eq, gt, lt, gte, lte and I am trying to set it dynamically from JavaScript columns: { field: "myDate", sortable: true, filterable: { ui: function(element) {…
wilbi
  • 225
  • 2
  • 14
2
votes
2 answers

Dynamic Kendo UI Grid editable datetime column not using value

I have a kendo UI Grid that has in-line editing on a single column. That column should be using a datepicker as the input when editing. However, after setting the value on the datepicker, and then returning to the same row/column, the date does not…
andyb952
  • 1,931
  • 11
  • 25
2
votes
1 answer

Kendo UI for jQuery Grid date not posting to the server side

I am having an issue with Kendo grid pop up editor not sending date data to the server side. Please see the code below: JavaScript: $(document).ready(function () { var serviceBaseUrl = "@Request.Url.ToString()", …
Salomon Zhang
  • 1,553
  • 3
  • 23
  • 41
2
votes
0 answers

How to set localization to Kendo date picker?

I would like to use an existing translation(localization) to the date picker of Kendo. I have found some resource on git but probably using it wrongly. This is my HTML:
JumpIntoTheWater
  • 1,306
  • 2
  • 19
  • 46
2
votes
1 answer

Telerik Kendo UI ASP.NET MVC Grid - Event handling of Saved Data Item

I am using the ASP.NET MVC Kendo library with the Grid control, with GridEditMode.PopUp mode for adding/editing. I have a 20+ screens that use the control, which I allow Create and Update actions on. Most models have date ranges, Start and End dates…
2
votes
2 answers

How to make a kendo-angular-datepicker to show year only

How to configure the kendo-angular date picker to show year only on selecting.
2
votes
1 answer

Close Event in Kendo Datepicker fire many times

I have created a template in my grid: template: '#if(IniReal != ""){#
#= IniReal #
# } else {# #} #', in this template a datepicker is created when the element of my arrangement comes…
2
votes
1 answer

Kendo Date Picker - Passing Incorrect Date Format to Controller

I am using KendoDatePicker, I use this all over my application. However, I am suddenly having an issue with it passing dates in wrong format. @(Html.Kendo().DatePicker() .Name("ToDate") .Min(DateTime.Today.AddYears(-1))…
Mark
  • 4,773
  • 8
  • 53
  • 91
2
votes
1 answer

Single calendar Date Range Picker

I am looking to build a date range picker that's values only consist of January-December of a single year at a time.It will look something like this: (This is taken from my existing kendo date range picker and poorly photoshopped) I have built one…
Dr RobotNick
  • 126
  • 3
  • 13
2
votes
0 answers

Kendo checkbox treeview with dropdowns and datepickers

I need to make a Kendo TreeView with a design like this: I was writing this code: http://dojo.telerik.com/eZAMU It's work well, but dropdown lists and datepickers are closing very quickly and I haven't time to select something
2
votes
0 answers

Kendo UI datepicker value disappear after server filtering in kendo grid

I am using Kendo Grid and filterable mode row. One of the columns is using a kendoDatePicker. I filter on server and my problem is, when I pick a value on the datePicker, filtering works fine, but when it shows the data, the value doesn't stay in…
Bege
  • 21
  • 1
2
votes
2 answers

how to set Angular Kendo Date Picker min date to yesterday?

I am working on kendo ui DatePicker,I want to set min date to yesterday. Could anyone help me? I have tried this var minDate = date.setDate((new Date()).getDate() - 1); but of no use. here is my code.
Vasu
  • 129
  • 2
  • 9
2
votes
2 answers

Kendo UI DatePicker in popup

I want to create a Kendo DatePicker in Kendo template. Here is my Kendo template. How can I init Kendo DatePicker.…
ifaim
  • 350
  • 1
  • 3
  • 9
1
2
3
12 13