Files
webwindowconfigurator/WebWindowComplex/Compo/EditElement.razor
T
Annamaria Sassi 353ab3d5d1 - Aggiunte icone dimensioni elementi
- Iniziato ad impostare traduzioni
2026-08-12 10:07:23 +02:00

15 lines
539 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="@(name())" width="52" />
</label>
@if (User)
{
<input type="text" readonly class="form-control" title="@Title()" value="@(CurrRec.dDimension)">
}
else
{
<input type="text" class="form-control" title="@Title()" @bind="@(updateVal)">
}
</div>