78 lines
3.0 KiB
Plaintext
78 lines
3.0 KiB
Plaintext
<MachSel RecMSE="RecMSE" E_MachSel="SetMacc"></MachSel>
|
|
|
|
<ShowProcessing Message="Caricamento" IsProcessing="@isProcessing"></ShowProcessing>
|
|
<div class="cardObj p-2 mt-2">
|
|
<div class="mb-1">
|
|
<DeclarEditor RecMSE="@RecMSE" EditRec="CurrRec" E_Updated="doUpdate"></DeclarEditor>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-6">
|
|
<h2>Tipo Selezione</h2>
|
|
</div>
|
|
<div class="col-6">
|
|
<div class="form-check form-switch fs-3">
|
|
<input class="form-check-input" type="checkbox" @bind="@UseOdl">
|
|
<label class="form-check-label">@selMessage</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@if (useOdl)
|
|
{
|
|
<MachineSelOdl IdxMacchina="@IdxMaccSel" E_OdlSel="SetOdl"></MachineSelOdl>
|
|
}
|
|
else
|
|
{
|
|
<EgwCoreLib.Razor.PeriodoSel CurrPeriodo="CurrPeriodo" E_PeriodoSel="SetPeriodo"></EgwCoreLib.Razor.PeriodoSel>
|
|
}
|
|
<div class="p-1">
|
|
<div class="row">
|
|
<div class="col-12">
|
|
|
|
<table class="table table-dark table-sm table-striped">
|
|
<thead>
|
|
<tr class="text-start1">
|
|
<th></th>
|
|
<th>Tag</th>
|
|
<th>Data</th>
|
|
<th>Oper</th>
|
|
<th>Macchina</th>
|
|
<th class="text-end">Dichiarazione</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach (var item in ListPaged)
|
|
{
|
|
<tr>
|
|
<td>
|
|
<button class="btn btn-primary" @onclick="() => SetEdit(item)"><i class="fa-solid fa-pen"></i></button>
|
|
</td>
|
|
<td>
|
|
<i class="@item.CssClass" aria-hidden="true"></i>
|
|
</td>
|
|
<td>
|
|
@item.DtRec
|
|
</td>
|
|
<td>
|
|
@item.CognNome
|
|
</td>
|
|
<td>
|
|
@item.IdxMacchina
|
|
</td>
|
|
<td class="text-end">
|
|
@item.ValString
|
|
</td>
|
|
</tr>
|
|
}
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<td colspan="6">
|
|
<EgwCoreLib.Razor.DataPager currPage="@PageNum" PageSize="@NumRecPage" totalCount="@TotalCount" numPageChanged="SavePage" numRecordChanged="SaveNumRec"></EgwCoreLib.Razor.DataPager>
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |