剣道のタブ ストリップを使用して、モデル コレクションの各アイテムのタブを表示しようとしています。
@if (Model.Entities.Count > 1)
{
@(Html.Kendo().TabStrip()
.Name("tabstrip")
.Items(items =>
{
for (int i = 0; i < Model.Entities.Count; i++)
{
items.Add()
.Text(Model.Entities[i].Name)
.Selected(i == 0)
.Content(@<div>
@Model.Entities[i].Name //causes exception
</div>
);
}
})
)
}
タブ コンテンツ (@Model.Entities[i].Name) のマークアップにより、例外が発生します。
ArgumentOutOfRangeException: Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index
私が間違っていることや、正しく実装する方法を誰かが知っていますか?