AppStat
API Reference
>
AppStat
| SoapAction | n/a |
| Input Name | AppStat |
| Output Name | AppStatResponse |
| Input Namespace | n/a |
| Group Name | Xperience |
| Container | XP_MsgBus.xsd |
Did this page help you?
Last updated Mon Dec 9 2024
| SoapAction | n/a |
| Input Name | AppStat |
| Output Name | AppStatResponse |
| Input Namespace | n/a |
| Group Name | Xperience |
| Container | XP_MsgBus.xsd |
if (!string.IsNullOrWhiteSpace(hostedWindowBase.WindowId))
{
this.isChildBusy = !this.isChildBusy;
// Issued by applications to indicate a status change is needed to the application's tab.
AppStatRq_MType request = new AppStatRq_MType()
{
// This is the number of times to flash the tab.
Flash = 5,
HostId = hostedWindowBase.WindowId
};
// Start/Stop the spinner (Start/Stop)
if (this.isChildBusy)
{
request.Spin = "Start";
}
else
{
request.Spin = "Stop";
}
Helper.FillHeader(request);
this.messageBus
.Send(request)
.RegisterResponseHandler(this.OnChildApplicationStatusResponse);
}
isBusy = !isBusy;
var request = new jackHenry.xperience.businessObjects.AppStat();
request.Flash = 5;
if (isBusy) {
request.Spin = "Start";
}
else {
request.Spin = "Stop";
}
sampleXPWebProductAngular.Helper.FillHeader(request);
var responceCallback = jackHenry.xperience.messageBus.send(request).registerResponseHandler(onToggleBusyCallback);