353ab3d5d1
- Iniziato ad impostare traduzioni
15 lines
539 B
Plaintext
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> |