Files
webwindowconfigurator/WebWindowComplex/Compo/EditSplitElement.razor
T
Annamaria Sassi 6636eacc04 - Impostato calcolo per dimensione solo luce
- Aggiunto reset lista profili elementi
- Aggiunta richiesta lista profili elementi per gli split
2026-02-02 16:59:25 +01:00

12 lines
339 B
Plaintext

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