34 lines
1.2 KiB
Plaintext
34 lines
1.2 KiB
Plaintext
@using EgwCoreLib.Razor
|
|
|
|
<div class="@SplitDimCss()">
|
|
<div class="input-group mb-2">
|
|
<span class="input-group-text">@Name</span>
|
|
<input type="number" class="form-control" @bind="@CurrVal">
|
|
<select class="form-select" style="max-width:6rem; background-color:#e9ecef" @bind="@CurrType">
|
|
@foreach (var mType in CurrRec.MeasureTypeList)
|
|
{
|
|
<option value=@(mType.Id)>
|
|
@switch (mType.Name)
|
|
{
|
|
case "Absolute":
|
|
{
|
|
<span class="input-group-text">mm</span>
|
|
break;
|
|
}
|
|
case "Proportional":
|
|
{
|
|
<span class="input-group-text">*</span>
|
|
break;
|
|
}
|
|
case "Percentage":
|
|
{
|
|
<span class="input-group-text">%</span>
|
|
break;
|
|
}
|
|
}
|
|
</option>
|
|
}
|
|
</select>
|
|
</div>
|
|
</div>
|