47 lines
2.1 KiB
Plaintext
47 lines
2.1 KiB
Plaintext
@page "/ODL"
|
|
|
|
<div class="card mb-5">
|
|
<div class="card-header table-primary">
|
|
<div class="d-flex justify-content-between">
|
|
<div class="px-1">
|
|
<div class="d-flex">
|
|
<div>
|
|
<h3><b>ODL</b></h3>
|
|
</div>
|
|
<div>
|
|
@*<ToggleMode FilterChanged="updateFilter" SelFilter="toggleFilter"></ToggleMode>*@
|
|
<span class="me-1 @leftStringCSS">Completati</span>
|
|
<span class="form-check form-check-sm form-switch py-1" title="ODL Chiusi / Correnti">
|
|
<input class="form-check-input" type="checkbox" id="switchActive" @bind="@isActive">
|
|
</span>
|
|
<span class="@rightStringCSS">In Corso</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="px-2">
|
|
<div class="input-group input-group">
|
|
<label class="input-group-text" for="maxRecord" title="Selezionare la fase da visualizzare"><i class="fa-solid fa-screwdriver-wrench"></i></label>
|
|
<select @bind="@selStato" class="form-select" title="Selezionare la fase da visualizzare">
|
|
<option value="*">--- Tutti ---</option>
|
|
@if (ListStati != null)
|
|
{
|
|
foreach (var item in ListStati)
|
|
{
|
|
<option value="@item.value">@item.label</option>
|
|
}
|
|
}
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="card-body">
|
|
<ListODL PagerResetReq="pgResetReq" updateRecordCount="UpdateTotCount" currFilter="@currFilter"></ListODL>
|
|
</div>
|
|
<div class="card-footer py-1">
|
|
<DataPager @ref="pagerODL" PageSize="numRecord" currPage="currPage" numRecordChanged="ForceReload" numPageChanged="ForceReloadPage" totalCount="totalCount" showLoading="isLoading" />
|
|
</div>
|
|
</div>
|
|
|
|
|