Kendo Tabstrip 内の Kendo Datepicker で問題が発生しています。以下は私のコードです。実行時に「エラー: 無効なテンプレート:」エラーが発生します。これを機能させる方法についてのアイデアはありますか?
<script id="EditDevelopmentPlanTemplate" type="text/kendo-tmpl">
@(Html.Kendo().TabStrip()
.Name("EditDevelopmentPlanTabStrip")
.SelectedIndex(0)
.Animation(animation => animation.Open(open => open.Fade(FadeDirection.In)))
.Items(items =>
{
items.Add().Text("Quarterly Meeting Notes").Content(@<text>
<div class="editor-label">
@Html.LabelFor(m => m.EDP_Q1MeetingNotes, new { style = "width:470px" })
</div>
<div class="editor-field">
@Html.TextAreaFor(m => m.EDP_Q1MeetingNotes, new { style = "width: 470px" })
</div>
<div class="editor-label">
@Html.LabelFor(m => m.EDP_Q1MeetingDate)
</div>
<div class="editor-label">
@Html.Kendo().DatePickerFor(m => m.EDP_Q1MeetingDate)
</div>
<div class="editor-label">
@Html.LabelFor(m => m.EDP_Q2MeetingNotes, new { style = "width:470px" })
</div>
<div class="editor-field">
@Html.TextAreaFor(m => m.EDP_Q2MeetingNotes, new { style = "width: 470px" })
</div>
<div class="editor-label">
@Html.LabelFor(m => m.EDP_Q2MeetingDate)
</div>
<div class="editor-label">
@Html.LabelFor(m => m.EDP_Q3MeetingNotes, new { style = "width:470px" })
</div>
<div class="editor-field">
@Html.TextAreaFor(m => m.EDP_Q3MeetingNotes, new { style = "width: 470px" })
</div>
<div class="editor-label">
@Html.LabelFor(m => m.EDP_Q3MeetingDate)
</div>
<div class="editor-label">
@Html.LabelFor(m => m.EDP_Q4MeetingNotes, new { style = "width:470px" })
</div>
<div class="editor-field">
@Html.TextAreaFor(m => m.EDP_Q4MeetingNotes, new { style = "width: 470px" })
</div>
<div class="editor-label">
@Html.LabelFor(m => m.EDP_Q4MeetingDate)
</div>
</text>);
}).ToClientTemplate())
</script>