I have created a RadzenDataGrid with a handful of columns, but rather than be scrollable, the grid appears to be shortening the width of the columns.
My code:
<RadzenDataGrid @ref=testGrid AllowFiltering="false" AllowColumnResize="false" AllowAlternatingRows="false" FilterMode="FilterMode.Advanced" AllowSorting="true" PageSize="10" AllowPaging="true" PagerHorizontalAlign="HorizontalAlign.Left" ShowPagingSummary="true"
Data="@test" GridLines="@gridLines" ColumnWidth="300px" LogicalFilterOperator="LogicalFilterOperator.Or" SelectionMode="DataGridSelectionMode.Single">
<Columns>
<RadzenDataGridColumn Property="Employer" Title="Employer" Sortable="false" Filterable="false" Frozen="false" Width="160px" />
<RadzenDataGridColumn Property="PositionTitle" Title="Position" Sortable="false" Filterable="false" Frozen="false" Width="160px" />
<RadzenDataGridColumn Property="Description" Title="Description" Sortable="false" Filterable="false" Width="210px" />
<RadzenDataGridColumn Property="Supervisor" Title="Supervisor" Sortable="false" Filterable="false" Width="160px" />
<RadzenDataGridColumn Property="SupervisorEmail" Title="Supervisor Email" Sortable="false" Filterable="false" Width="100px" />
<RadzenDataGridColumn Title="Current" Sortable="false" Filterable="false" Width="30px">
<Template Context="test">
@if (test.CurrentBool)
{
<RadzenText>Yes</RadzenText>
}
else
{
<RadzenText>No</RadzenText>
}
</Template>
</RadzenDataGridColumn>
<RadzenDataGridColumn Title="External" Sortable="false" Filterable="false" Width="30px">
<Template Context="test">
@if (test.External)
{
<RadzenText>Yes</RadzenText>
}
else
{
<RadzenText>No</RadzenText>
}
</Template>
</RadzenDataGridColumn>
<RadzenDataGridColumn Title="Teacher" Sortable="false" Filterable="false" Width="30px">
<Template Context="test">
@if (test.Teacher)
{
<RadzenText>Yes</RadzenText>
}
else
{
<RadzenText>No</RadzenText>
}
</Template>
</RadzenDataGridColumn>
<RadzenDataGridColumn Property="StartDate" Title="Start Date" Sortable="false" Filterable="false" FormatString="{0:d}" Width="30px" />
<RadzenDataGridColumn Property="EndDate" Title="End Date" Sortable="false" Filterable="false" FormatString="{0:d}" Width="30px" />
</Columns>
</RadzenDataGrid>
