Aggiornato AGBOptionText per testi non editabili
This commit is contained in:
@@ -78,9 +78,9 @@ namespace WebWindowComplex.Compo
|
||||
{
|
||||
if (FrameWindow.SelShapeIndex != value)
|
||||
{
|
||||
FrameWindow.SelShapeIndex = value;
|
||||
// richiesta reset dict shape
|
||||
_ = EC_ReqResetDictShape.InvokeAsync(true);
|
||||
FrameWindow.SelShapeIndex = value;
|
||||
foreach(var s in SashList)
|
||||
{
|
||||
s.SelHardwareFromId = "000000";
|
||||
|
||||
@@ -1,9 +1,18 @@
|
||||
<div class="input-group mb-2">
|
||||
<label class="input-group-text">@(CurrOpt.sName)</label>
|
||||
<select class="form-select" @bind="CurrValue">
|
||||
@foreach (var currValueCombo in CurrOpt.ValueList)
|
||||
{
|
||||
<option value="@currValueCombo">@currValueCombo</option>
|
||||
}
|
||||
</select>
|
||||
@if (CurrOpt.ValueList.Count > 0)
|
||||
{
|
||||
<select class="form-select" @bind="CurrValue">
|
||||
@foreach (var currValueCombo in CurrOpt.ValueList)
|
||||
{
|
||||
<option value="@currValueCombo">@currValueCombo</option>
|
||||
}
|
||||
</select>
|
||||
}
|
||||
else
|
||||
{
|
||||
<select class="form-select" @bind="CurrValue">
|
||||
<option value="@CurrOpt.sValue">@CurrOpt.sValue</option>
|
||||
</select>
|
||||
}
|
||||
</div>
|
||||
Reference in New Issue
Block a user