e8cecb3113
- Aggiornato readme
13 lines
512 B
Plaintext
13 lines
512 B
Plaintext
@using static WebWindowComplex.LayoutConst
|
|
<div class="input-group mb-2">
|
|
<label class="input-group-text">@((PositionJoints)(CurrRec.nIndex - 1))</label>
|
|
<select class="form-select" @bind="@CurrVal">
|
|
@foreach (var typeJoint in CurrRec.JointTypeList)
|
|
{
|
|
<option value="@(typeJoint.Id)">@(typeJoint.Name)</option>
|
|
}
|
|
@* <option value="0">Angled</option>
|
|
<option value="1">Full H</option>
|
|
<option value="2">Full V</option> *@
|
|
</select>
|
|
</div> |