Files
webwindowconfigurator/WebWindowComplex/Compo/EditSplitElement.razor
T
Annamaria Sassi 809ff5a237 Aggiornamento
2026-08-13 14:48:23 +02:00

12 lines
385 B
Plaintext

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