This question is locked. New answers and comments are not allowed.
I am trying to use a Telerik DatePicker in a layout file, outside of the call to RenderBody(). This is a simple example, with _HtmlHead initializing the ScriptManager et al:
@using Telerik.Web.Mvc.UI<!DOCTYPE html><html><head> <title>CORE</title> @Html.Partial("_HtmlHead")</head><body> @(Html.Telerik().DatePicker().Name("date1").Value(DateTime.Now))) @RenderBody()</body></html>
The DatePicker above appears, but its calendar button does not work. The same also happens if you move the DatePicker to after RenderBody(). However, if the DatePicker is inside the view used by RenderBody(), it works as expected.Is there a fix for this issue, other than not using DatePicker in a layout file?
Thank you,
Eve