This question is locked. New answers and comments are not allowed.
I know it's a long heading...
Im guessing the facft that neither the dropdownlists nor the datepicker are working in my popup editor template (ajaxbinding) is because maybe there missing javascript files??
It seems odd as a grid in another tab on the same page, behaves fine, with dropdownlists created similarly.
the popup edittemplate is:
Do i need to include the extra javascript? for this popup alone?
if so is it simply?
Im guessing the facft that neither the dropdownlists nor the datepicker are working in my popup editor template (ajaxbinding) is because maybe there missing javascript files??
It seems odd as a grid in another tab on the same page, behaves fine, with dropdownlists created similarly.
the popup edittemplate is:
@model WAC_MVC.ViewModels.MemberViewModelSimple<script src="@Url.Content("~/Scripts/jquery-1.4.4.min.js")" type="text/javascript"></script><script src="@Url.Content("~/Scripts/jquery.validate.min.js")" type="text/javascript"></script><script src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.min.js")" type="text/javascript"></script>@using (Html.BeginForm()) { @Html.ValidationSummary(true) <fieldset> <legend>Enter New Member Details</legend> @Html.HiddenFor(model => model.mMemberID) <div class="editor-label"> @Html.LabelFor(model => model.mFName) </div> <div class="editor-field"> @Html.EditorFor(model => model.mFName) @Html.ValidationMessageFor(model => model.mFName) </div> <div class="editor-label"> @Html.LabelFor(model => model.MembershipID) </div> <div class="editor-field"> @(Html.Telerik().ComboBoxFor(model => model.MembershipID) .BindTo(ViewBag.Memberships as SelectList)) @Html.ValidationMessageFor(model => model.MembershipID) </div> <div class="editor-label"> @Html.LabelFor(model => model.GroupID) </div> <div class="editor-field"> @( Html.Telerik().ComboBoxFor(m => m.GroupID) .BindTo(ViewBag.Groups as SelectList)) @Html.ValidationMessageFor(model => model.GroupID) </div> <div class="editor-label"> @Html.LabelFor(model => model.mDOB) </div> <div class="editor-field"> @Html.EditorFor(model => model.mDOB) @Html.ValidationMessageFor(model => model.mDOB) </div> </fieldset>}Do i need to include the extra javascript? for this popup alone?
if so is it simply?
@Html.Telerik().ScriptRegistrar().DefaultGroup(group => group.Add("telerik.common.min.js").Add("telerik.list.min.js").Add("telerik.calendar.min.js").Add("telerik.datepicker.min.js").Add("telerik.combobox.min.js"))