On Print Loading Message
From Morfik Wiki
This event is fired on the server when the default loading message is being inserted into the application’s main HTML page.
- Where
Server
- Sample code
FX Code
Procedure Project1XApp.XAppPrintLoadingMessage(Response: THTTPResponse; Var Print: Boolean); Begin Response.WritelnString('Please, wait...'); End;
| BX Code |
|---|
Published Message Sub XAppPrintLoadingMessage(Response As THttpResponse, ByRef Print As Boolean) Response.WritelnString("Please, wait...") End Sub |
| CX Code |
|---|
published message void XAppPrintLoadingMessage(THttpResponse Response, ref Boolean Print) { Response.WritelnString("Please, wait..."); } |
- Applies to
Project

