I have a tabstrip which I am trying to add kendo editors for but when the editor is added to the tabstrip no content is visible. I can see it in the source but not rendered to the screen. If I move the editor out side the tabstrip it works fine.
@(Html.Kendo().TabStrip()
.Name(
"statusReportTabs"
)
.Items(ts =>
{
ts.Add().Text(
"Daily Events"
)
.Selected(
true
)
.Content(@<text>
<h5>Yesterday's Events (@(Model.ReportDate.AddDays(-1).ToLongDateString()))</h5>
@(Html.Kendo().EditorFor(x => x.YesterdaysEvents)
.Tools(t => t.FontColor().FontSize())
.HtmlAttributes(
new
{style=
"height:100px"
})
)
<h5>Today's Events (@Model.ReportDate.ToLongDateString())</h5>
@(Html.Kendo().EditorFor(x => x.TodaysEvents)
.Tools(t => t.FontColor().FontSize())
.HtmlAttributes(
new
{style=
"height:100px"
})
)
<h5>Tomorrow's Events (@(Model.ReportDate.AddDays(1).ToLongDateString()))</h5>
@(Html.Kendo().EditorFor(x => x.TomorrowsEvents)
.Tools(t => t.FontColor().FontSize())
)
</text>);
ts.Add().Text(
"Contact Information"
)
.Content(
"Contact Info Here"
);
ts.Add().Text(
"Concerns"
)
.Content(
"Concern Info Here"
);
})
)