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…
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) {…
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…
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()",
…
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:
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…
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))…
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…
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
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…
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.