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"
|
||||
@using Blazor.Models
|
||||
<h3>Liste</h3>
|
||||
<DataGrid TItem="ChaptersModel"
|
||||
Data="@chapters"
|
||||
ReadData="@OnReadData"
|
||||
TotalItems="@totalChapter"
|
||||
PageSize="10"
|
||||
ShowPager
|
||||
Responsive>
|
||||
<DataGridColumn TItem="ChaptersModel" Field="@nameof(ChaptersModel.Id)" Caption="#" />
|
||||
<DataGridColumn TItem="ChaptersModel" Field="@nameof(ChaptersModel.Name)" Caption="Name" />
|
||||
</DataGrid>
|
||||
@page "/chapters"
|
||||
@using Blazor.Models
|
||||
<h3>Liste</h3>
|
||||
<button type="button" class="btn btn-primary" @onclick="() => Export()"><i class="fa fa-trash"></i> Supprimer</button>
|
||||
<DataGrid TItem="ChaptersModel"
|
||||
Data="@chapters"
|
||||
ReadData="@OnReadData"
|
||||
TotalItems="@totalChapter"
|
||||
PageSize="10"
|
||||
ShowPager
|
||||
Responsive>
|
||||
<DataGridColumn TItem="ChaptersModel" Field="@nameof(ChaptersModel.Id)" Caption="#" />
|
||||
<DataGridColumn TItem="ChaptersModel" Field="@nameof(ChaptersModel.Name)" Caption="Name" />
|
||||
</DataGrid>
|
||||
|
Loading…
Reference in new issue