16 lines
441 B
Plaintext
16 lines
441 B
Plaintext
<div class="input-group">
|
|
<label class="input-group-text">Cliente</label>
|
|
<select class="form-select" @bind="@CustomerID">
|
|
<option value="0">--- Selezionare Cliente ---</option>
|
|
@if (CustomersList != null)
|
|
{
|
|
@foreach (var item in CustomersList)
|
|
{
|
|
<option value="@item.CustomerID">@item.Name [@item.CustomerID]</option>
|
|
}
|
|
}
|
|
</select>
|
|
</div>
|
|
|
|
|