Files
webwindowconfigurator/WebWindowComplex/Compo/EditElement.razor
T
Annamaria Sassi 83cf80a289 - Aggiunte traduzioni pagina Inglesine
- Modifiche interfaccia
- Correzioni varie
2026-08-26 14:53:51 +02:00

14 lines
502 B
Plaintext

@using static WebWindowComplex.LayoutConst
<div class="input-group mb-2">
<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>