I just downloaded the trial version and am attempting to create a simple data entry screen.
Using the following Javascript
$("#dateTo").kendoDatePicker({
format: 'MM/dd/yyyy'
});
I'm trying to display it like this:
Date From:
<div id="dateFrom">
</div>
The control displays and the calendar appears when I click the button but the selected value does not appear in the textbox, nor can I edit a date directly. It seems like its read-only.
These are the Kendo references in my Layout cshtml:
@Scripts.Render("https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js")
@Scripts.Render("https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js")
@Styles.Render("http://cdn.kendostatic.com/2014.3.1411/styles/kendo.common.min.css")
@Styles.Render("http://cdn.kendostatic.com/2014.3.1411/styles/kendo.blueopal.min.css")
@Scripts.Render("http://cdn.kendostatic.com/2014.3.1411/js/kendo.all.min.js")
What could be going wrong here?
Thanks
Carl
Using the following Javascript
$("#dateTo").kendoDatePicker({
format: 'MM/dd/yyyy'
});
I'm trying to display it like this:
Date From:
<div id="dateFrom">
</div>
The control displays and the calendar appears when I click the button but the selected value does not appear in the textbox, nor can I edit a date directly. It seems like its read-only.
These are the Kendo references in my Layout cshtml:
@Scripts.Render("https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js")
@Scripts.Render("https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js")
@Styles.Render("http://cdn.kendostatic.com/2014.3.1411/styles/kendo.common.min.css")
@Styles.Render("http://cdn.kendostatic.com/2014.3.1411/styles/kendo.blueopal.min.css")
@Scripts.Render("http://cdn.kendostatic.com/2014.3.1411/js/kendo.all.min.js")
What could be going wrong here?
Thanks
Carl