Files
webwindowconfigurator/WebWindowComplex/Compo/EditSplitElement.razor
T
2026-08-20 16:30:29 +02:00

16 lines
562 B
Plaintext

@using static WebWindowComplex.LayoutConst
<div class="input-group mb-2">
<span class="input-group-text">
<img class="img-fluid me-2" src="@GetImageElemPath()" title="@Traduci(Type)" width="40" />
@CurrRec.nIndex
</span>
@* <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>