This question is locked. New answers and comments are not allowed.
I added this new control to my view and since then I get a javascript error
"a is undefined" in : http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js
And I have those ref in my page :
Ligne : 38
I don't know where to look...
Also, do I need to specify every params like .MaxDate().MinDate().Value().ShowButton() or theyy have default value?
If I remove the DatePicker I don't have any problem, here is my code :
| <p> |
| <label for="CreationDate">Date</label> |
| <%= Html.Telerik().DatePicker().Name("CreationDate").MaxDate(Model.MaxDate).MinDate(Model.MinDate).Value(Model.CreationDate).ShowButton(true) %> |
| <%= Html.ValidationMessage("CreationDate")%> |
| </p> |
| <link rel="stylesheet" href="<%= Links.Content._2010_1_309.telerik_common_min_css %>" type="text/css" media="all" /> |
| <link rel="stylesheet" href="<%= Links.Content._2010_1_309.telerik_windows7_min_css %>" type="text/css" media="all" /> |
| and this on the bottom : |
| <%= Html.Telerik().ScriptRegistrar().jQuery(false).DefaultGroup(g => g.DefaultPath("~/Content/scripts/2010.1.309")) %> |