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…
I have the following grid with a date picker:
@(Html.Kendo().Grid()
.Name("ScheduleGrid")
.AutoBind(true)
-
)
.Editable(editable => editable.Mode(GridEditMode.InCell))
…
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 =…
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…
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:
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…
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…
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) {
…
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…
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: ""
}, {
…
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…
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…