Files
mapo-iob-man/IOB-MAN/Components/Compo/DataDetailList.razor
T
2025-06-17 09:06:10 +02:00

21 lines
758 B
Plaintext

@if (ListRecords == null || ListRecords.Count == 0)
{
<alert class=" alert alert-warning p-1">Nessun dato disponibile</alert>
}
else
{
<div class="d-flex justify-content-between me-3">
<span>Data-Ora</span>
<span>Valore</span>
</div>
<div style="max-height: @CompoHeight; overflow-y:scroll">
<ul class="list-group small">
<Virtualize Items="@ListRecords" OverscanCount="1" ItemSize="20">
<li class="list-group-item d-flex justify-content-between align-items-center text-nowrap py-1">
<span class="">@context.DataOra</span>
<span class="ms-3 fw-bold">@context.Valore</span>
</li>
</Virtualize>
</ul>
</div>
}