6806f7ffe5
- Fix gestione paginazione x elenco files - Fix reload
35 lines
1.1 KiB
Plaintext
35 lines
1.1 KiB
Plaintext
|
|
<table class="table table-sm table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th class="text-end">Type</th>
|
|
<th class="text-end">Size</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@if (ListRecords == null || ListRecords.Count == 0)
|
|
{
|
|
<tr>
|
|
<td colspan="3">
|
|
<div class="alert alert-info text-center fs-5">Attenzione: nessun file trovato per ODL richiesto.</div>
|
|
</td>
|
|
</tr>
|
|
}
|
|
else
|
|
{
|
|
@foreach (var record in ListRecords)
|
|
{
|
|
<tr>
|
|
<td>
|
|
<a href="@FileLink(record.Name)" target="_blank" class="" title="Download File">@record.Name</a>
|
|
|
|
</td>
|
|
<td class="text-end">@record.Extension</td>
|
|
<td class="text-end">@CalcSize(record.Length)</td>
|
|
</tr>
|
|
}
|
|
}
|
|
</tbody>
|
|
</table>
|
|
<DataPager PageSize="@numRecord" currPage="@currPage" numRecordChanged="SetNumRec" numPageChanged="SetPage" totalCount="@totalCount" showLoading="@isLoading" /> |