Files
webwindowconfigurator/WebWindowComplex/Compo/EditElement.razor
T
2026-01-21 14:32:11 +01:00

12 lines
349 B
Plaintext

@using static WebWindowComplex.LayoutConst
<div class="input-group mb-2">
<span class="input-group-text">@(CurrRec.nIndex)</span>
@if (User)
{
<input type="text" readonly class="form-control" value="@(CurrRec.dDimension)">
}
else
{
<input type="text" class="form-control" @bind="@(updateVal)">
}
</div>