30 lines
1.1 KiB
Plaintext
30 lines
1.1 KiB
Plaintext
@page "/status-map"
|
|
|
|
<MseSampler SampleMult="1.5" E_Updated="SaveData"></MseSampler>
|
|
<div class="row">
|
|
@if (ListMSE == null || ListMSE.Count == 0 || isCalcSize)
|
|
{
|
|
<EgwCoreLib.Razor.LoadingData></EgwCoreLib.Razor.LoadingData>
|
|
}
|
|
else
|
|
{
|
|
@if (Width < 640)
|
|
{
|
|
|
|
<div class="d-flex justify-content-center">
|
|
<label class="form-check-label me-2" for="">Nascondi dettagli</label>
|
|
<div class="form-check form-switch">
|
|
<input class="form-check-input" type="checkbox" role="switch" id="flexSwitchCheckDefault" @bind="ShowCard">
|
|
<label class="form-check-label" for="flexSwitchCheckDefault">Mostra dettagli</label>
|
|
</div>
|
|
</div>
|
|
}
|
|
@foreach (var item in ListMSE)
|
|
{
|
|
<div class="col-6 col-sm-6 col-md-4 col-lg-4 col-xl-3 mb-2 px-1 bloccoMacc">
|
|
<MachineBlock RecMSE="@item" FullMode="true" Width="@Width" Height="@Height" showCard="@ShowCard"></MachineBlock>
|
|
</div>
|
|
}
|
|
}
|
|
</div>
|