@if (InputPosition == DataListInputPosition.Left)
{
}
@ItemTemplate(Item)
@if (InputPosition == DataListInputPosition.Right)
{
}
@code {
[CascadingParameter(Name = "Selected")]
public bool Selected { get; set; }
[CascadingParameter(Name = "Radio")]
public bool Radio { get; set; }
[CascadingParameter(Name = "Checkbox")]
public bool Checkbox { get; set; }
[CascadingParameter(Name = "InputPosition")]
public DataListInputPosition InputPosition { get; set; }
[CascadingParameter(Name = "SelectionTemplate")]
public RenderFragment