Feat : Not finished / Export implementation
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
528308d655
commit
c9dc0c30a7
@ -1,13 +1,14 @@
|
|||||||
@page "/chapters"
|
@page "/chapters"
|
||||||
@using Blazor.Models
|
@using Blazor.Models
|
||||||
<h3>Liste</h3>
|
<h3>Liste</h3>
|
||||||
<DataGrid TItem="ChaptersModel"
|
<button type="button" class="btn btn-primary" @onclick="() => Export()"><i class="fa fa-trash"></i> Supprimer</button>
|
||||||
Data="@chapters"
|
<DataGrid TItem="ChaptersModel"
|
||||||
ReadData="@OnReadData"
|
Data="@chapters"
|
||||||
TotalItems="@totalChapter"
|
ReadData="@OnReadData"
|
||||||
PageSize="10"
|
TotalItems="@totalChapter"
|
||||||
ShowPager
|
PageSize="10"
|
||||||
Responsive>
|
ShowPager
|
||||||
<DataGridColumn TItem="ChaptersModel" Field="@nameof(ChaptersModel.Id)" Caption="#" />
|
Responsive>
|
||||||
<DataGridColumn TItem="ChaptersModel" Field="@nameof(ChaptersModel.Name)" Caption="Name" />
|
<DataGridColumn TItem="ChaptersModel" Field="@nameof(ChaptersModel.Id)" Caption="#" />
|
||||||
</DataGrid>
|
<DataGridColumn TItem="ChaptersModel" Field="@nameof(ChaptersModel.Name)" Caption="Name" />
|
||||||
|
</DataGrid>
|
||||||
|
Loading…
Reference in new issue