@if (TitleTemplate != null || Title != null)
{
@if (TitleTemplate != null)@TitleTemplate else @Title
}
@if (ScrollY != null)
{
@colGroup(this, false)
@if (_fieldModel is not null)
{
@ChildContent(_fieldModel)
}
@body(_showItems)
@tfoot()
}
else if (ScrollX != null)
{
@colGroup(this, true)
@header()
@if (_fieldModel is not null)
{
@ChildContent(_fieldModel)
}
@body(_showItems)
@tfoot()
}
else
{
@colGroup(this, true)
@header()
@body(_showItems)
@tfoot()
}
@if (FooterTemplate != null || Footer != null)
{
}