[성현모] webclient timeout 예외처리
This commit is contained in:
@ -6,9 +6,9 @@
|
||||
<RadzenDataGrid class="rz-shadow-1" TItem="TDataModel" Data="@DataList" GridLines="DataGridGridLines.Both"
|
||||
AllowFiltering FilterMode="FilterMode.Simple" AllowColumnResize
|
||||
SelectionMode="DataGridSelectionMode.Single" Density="@Density.Default">
|
||||
<Columns>
|
||||
<Columns>
|
||||
@foreach (var col in typeof(TDataModel).GetProperties())
|
||||
{
|
||||
{
|
||||
<RadzenDataGridColumn Property="@col.Name" Title="@col.Name">
|
||||
<Template>
|
||||
<span>
|
||||
@ -16,11 +16,11 @@
|
||||
</span>
|
||||
</Template>
|
||||
</RadzenDataGridColumn>
|
||||
}
|
||||
}
|
||||
</Columns>
|
||||
</RadzenDataGrid>
|
||||
|
||||
@code {
|
||||
[Parameter]
|
||||
public IEnumerable<TDataModel> DataList { get; set; }
|
||||
public IEnumerable<TDataModel> DataList { get; set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user