This is a migrated thread and some comments may be shown as answers.

Undisplayed tabstrip tabs disable the editor

0 Answers 42 Views
TabStrip
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
David Bailey
Top achievements
Rank 1
David Bailey asked on 04 May 2011, 01:57 PM
Upon rendering, the selected node's editor works just fine but the ajax rendered version is disabled and throws a javascript error in the console that telerik.editor.min.js errored with a message of

 'contentWindow' is null or not an object




Here is the code I changed from the sample (as uploaded):
<% Html.Telerik().TabStrip()
   .Name("tsParent")
   .Items(parent =>
   {
       parent.Add()
            .Text("Parent")
            .LoadContentFrom("ViewChildUserControl", "Home")
            .Selected(true);
       parent.Add()
            .Text("NewTab")
            .LoadContentFrom("ViewChildUserControl", "Home");
   })
   .Render();
%>
Tags
TabStrip
Asked by
David Bailey
Top achievements
Rank 1
Share this question
or