Files
webwindowconfigurator/Test.UI/Components/Pages/SimpleEdit.razor
T
2026-01-16 15:10:19 +01:00

32 lines
648 B
Plaintext

@page "/SimpleEdit"
@rendermode InteractiveServer
<PageTitle>SimpleEdit</PageTitle>
<WebWindowTest.Test ListPayload="SetupList"
LiveData="CurrData"
EC_ActionReq="DoAction"
EC_DoUpdate="ExecRequest"
EC_OnClose="CloseObj">
</WebWindowTest.Test>
@if (!string.IsNullOrEmpty(outClose))
{
<div class="alert alert-danger fs-4">
@outClose
</div>
}
else if (!string.IsNullOrEmpty(outSave))
{
<div class="alert alert-success fs-4">
@outSave
</div>
}
<div class="card">
<div class="card-body small">
@JsonSer
</div>
</div>