inizio gestione filtro x PODL
This commit is contained in:
@@ -29,6 +29,30 @@
|
||||
</div>
|
||||
<div class="d-flex justify-content-end col-6">
|
||||
<div class="d-flex justify-content-between">
|
||||
<div class="p-1">
|
||||
<div class="input-group input-group-sm d-flex justify-content-between">
|
||||
<div class="input-group-text" id="inputGroup-sizing-sm">
|
||||
<div class="pe-3" title="Attivabile">
|
||||
Kit
|
||||
</div>
|
||||
<div class="form-check form-check-sm form-switch py-1" title="Mostra KIT">
|
||||
<input class="form-check-input" type="checkbox" @bind="@showKit">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="p-1">
|
||||
<div class="input-group input-group-sm d-flex justify-content-between">
|
||||
<div class="input-group-text" id="inputGroup-sizing-sm">
|
||||
<div class="pe-3" title="Attivabile">
|
||||
Attivi
|
||||
</div>
|
||||
<div class="form-check form-check-sm form-switch py-1" title="Mostra Solo Attivi">
|
||||
<input class="form-check-input" type="checkbox" @bind="@onlyAtt">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="p-1">
|
||||
<div class="input-group me-2" style="min-width: 20rem;">
|
||||
<span class="input-group-text"><i class="fa fa-search"></i></span>
|
||||
|
||||
@@ -49,6 +49,17 @@ namespace MP.SPEC.Pages
|
||||
}
|
||||
}
|
||||
|
||||
private bool showKit
|
||||
{
|
||||
get => currFilter.ShowKit;
|
||||
set => currFilter.ShowKit = value;
|
||||
}
|
||||
private bool onlyAtt
|
||||
{
|
||||
get => currFilter.IsActive;
|
||||
set => currFilter.IsActive = value;
|
||||
}
|
||||
|
||||
protected string header
|
||||
{
|
||||
get => currFilter.Header;
|
||||
|
||||
Reference in New Issue
Block a user