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

15 lines
560 B
Plaintext

@using static WebWindowComplex.LayoutConst
<div class="input-group mb-2">
@* <span class="input-group-text">@(name())</span> *@
<label class="input-group-text px-2 py-1">
<img class="img-fluid" src="@GetImageElementPath(name())" title="@Traduci("CWElem_"+name())" width="52" />
</label>
@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>