I'm trying to create a simple form using Kendo UI, but for some reason the buttons on the input fields (like dropdown, combobox, calendar) are misaligned.
Does anyone know where to start looking for the source of the problem? I've Googled around…
I'm trying to customize and extend datepicker.
First I extended Binder by customValue:
kendo.data.binders.widget.customValue = kendo.data.Binder.extend({
init: function (element, bindings, options) {
kendo.data.Binder.fn.init.call(this,…
I have a kendo Date picker it is functioning well.
On click of icon in input box I am able to open date dialog and it is working.
But I want this dialog should also open in click of input box as well..
$("#monthpicker").kendoDatePicker({
// defines the start view
start: "year",
// defines when the calendar should return date
depth: "year",
// display month and year in the input
format: "MMMM yyyy"
});