14 lines
431 B
Plaintext
14 lines
431 B
Plaintext
@page "/controls"
|
|
@inherits BasePage
|
|
|
|
@if (string.IsNullOrEmpty(IdxMacc) || CurrMSE == null || IsLoading)
|
|
{
|
|
<EgwCoreLib.Razor.LoadingData></EgwCoreLib.Razor.LoadingData>
|
|
}
|
|
else
|
|
{
|
|
<CheckControls RecMSE="CurrMSE"></CheckControls>
|
|
<MachineBlock RecMSE="CurrMSE" FullMode="false" IdxMacchSub="@IdxMaccSubSel"></MachineBlock>
|
|
<ControlsMan RecMSE="CurrMSE" E_Updated="ForceReload" E_MachSel="SetMacc"></ControlsMan>
|
|
}
|