This question is locked. New answers and comments are not allowed.
I have moved a project from the old Extensions to the new one. I now have a problem with LoadOnDemand for the first tab.
My view is
<%
Html.Telerik().TabStrip()
.Name("tab")
.Items(parent => {
parent
.Add()
.Text("General")
.LoadContentFrom(Url.Action("GeneralPV", Model));
parent
.Add()
.Text("Notes")
.LoadContentFrom(Url.Action("NotesPV", Model));
parent
.Add()
.Text("Medical")
.LoadContentFrom(Url.Action("MedicalPV", Model));
}
)
.Render();
%>
When I view the page, the contents of the first tab are empty. I have to change to another tab, and then change back for the tab to populate. Any ideas on how to fix?
Sean
My view is
<%
Html.Telerik().TabStrip()
.Name("tab")
.Items(parent => {
parent
.Add()
.Text("General")
.LoadContentFrom(Url.Action("GeneralPV", Model));
parent
.Add()
.Text("Notes")
.LoadContentFrom(Url.Action("NotesPV", Model));
parent
.Add()
.Text("Medical")
.LoadContentFrom(Url.Action("MedicalPV", Model));
}
)
.Render();
%>
When I view the page, the contents of the first tab are empty. I have to change to another tab, and then change back for the tab to populate. Any ideas on how to fix?
Sean