Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I'm having this same problem. I'm using MVC3 (non-Razor), Telerik MVC Controls, and jQuery. I've only recently started seeing this problem. Unfortunately, I can't seem to isolate what I might have changed to spark this behavior. I've recently had to add an ASP.NET Script Manager to import script resources from a 3rd party assembly, as well as some custom code to assist with generating redundant markup.</p> <p>In response to Nick's question, the Telerik controls automagically insert a</p> <pre><code>&lt;%: Html.Telerik().ScriptRegistrar() ... %&gt; </code></pre> <p>line into the markup, but that's been there since the beginning of my project - when the DatePicker worked as expected.</p> <p>I am seeing this behavior in both Firefox and IE. In sheer desperation, I stripped my file down to exactly this:</p> <pre><code>&lt;%@ Master Language="C#" Inherits="System.Web.Mvc.ViewMasterPage" %&gt; &lt;!DOCTYPE html&gt; &lt;html&gt; &lt;head runat="server"&gt; &lt;title&gt;Test&lt;/title&gt; &lt;%: Html.Telerik().StyleSheetRegistrar().DefaultGroup(group =&gt; group.Add("telerik.common.css").Add("telerik.webblue.css").Combined(true).Compress(true)) %&gt; &lt;/head&gt; &lt;body&gt; &lt;form id="frmMain" method="post" runat="server"&gt; &lt;% Html.Telerik( ).DatePicker( ) .Name( "dtTest" ) .HtmlAttributes( new { id = "dtTest_wrapper" } ) .Min( DateTime.Today.Subtract( new TimeSpan( 3835, 0, 0, 0, 0 ) ) ) .Max( DateTime.Today.Add( new TimeSpan( 24, 0, 0 ) ) ) .ShowButton( true ) .OpenOnFocus( true ) .Render( ); %&gt; &lt;/form&gt; &lt;%: Html.Telerik().ScriptRegistrar().DefaultGroup(group =&gt; group.Combined(false).Compress(false)) %&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>This still isn't working the way it should. This is a master page (always has been), but there's nothing defined in any of the child pages, yet (never has been).</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload