16 lines
564 B
Plaintext
16 lines
564 B
Plaintext
@using static WebWindowComplex.LayoutConst
|
|
<div class="input-group mb-2">
|
|
<span class="input-group-text">
|
|
<img class="img-fluid me-2" src="@GetImageElemPath()" title="@(CurrRec.sName)" width="40" />
|
|
@CurrRec.nIndex
|
|
</span>
|
|
@* <span class="input-group-text">@CurrRec.nIndex</span> *@
|
|
@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> |