24 lines
539 B
Plaintext
24 lines
539 B
Plaintext
@if (TransferDestinations == null)
|
|
{
|
|
<p>
|
|
<em>Loading ...</em>
|
|
</p>
|
|
}
|
|
else
|
|
{
|
|
|
|
<div class="form-field d-flex align-items-center">
|
|
|
|
<select class="custom-select" @onchange="OnValueChanged" title="Destination is required ">
|
|
<option value="Select" selected disabled="disabled">(Choose Destination)</option>
|
|
@foreach (var dest in TransferDestinations)
|
|
{
|
|
<option value="@dest.Id"> @dest.Name</option>
|
|
}
|
|
</select>
|
|
</div>
|
|
|
|
|
|
}
|
|
|