WJb UI Examples & Demos
Discover dashboards, monitoring tools, workflow visualization, and job management features built with WJb.UI.
Getting Started
🔧 Services
Manage service configuration, edit settings, and persist changes through a built-in administration interface.
@using WJb
@using WJb.UI.Blazor
@inject IStore Store
<ServicesTab />
<div class="fixed-bottom text-center mb-3">
<button class="btn btn-warning btn-lg" @onclick="SaveAsync">
💾 Save File
</button>
</div>
@code {
private Task SaveAsync()
{
var json = ((IDefinitionStore)Store).GetServicesJson();
File.WriteAllText("App_Data/services.json", json);
return Task.CompletedTask;
}
}Services
1 definition(s)
smtp
WJbPro.Demos.Actions.SmtpSettings, WJbPro.Web