Files
webwindowconfigurator/Test.UI/Components/Pages/EditJWD.razor
T

29 lines
568 B
Plaintext

@page "/EditJWD"
@rendermode InteractiveServer
<PageTitle>EditJWD</PageTitle>
<WebWindowComplex.TableComp ListPayload="SetupList"
LiveData="CurrData"
EC_OnUpdate="SaveJWD"
EC_OnClose="CloseObj">
</WebWindowComplex.TableComp>
@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>
}
<p>
@currJwd
</p>