Files
egwcorelib/EgwCoreLib.Razor/PeriodoSel.razor
T

17 lines
579 B
Plaintext

@using EgwCoreLib.Utils;
<div class="input-group">
<span class="input-group-text">@PeriodoLabel</span>
<input type="date" class="form-control" @bind-value="@Inizio">
<input type="date" class="form-control" @bind-value="@Fine">
<select @bind="@PerSelect" class="form-select form-select-sm bg-opacity-10 flex-grow-0 w-auto ps-2">
@foreach (var item in DictSelect ?? new())
{
<option value="@item.Key">@item.Value</option>
}
</select>
<span class="input-group-text"><i class="far fa-calendar-alt"></i></span>
</div>