On Ready
From Morfik Wiki
This event is fired within the browser after a Form has been successfully created and its content is ready for access by other objects within the browser.
- Where
Browser
- Sample code
FX Code
Procedure Index.WebFormReady(Var Ready: Boolean); Begin OpenForm('TestForm', 'Index:Subform1', ''); End;
| BX Code |
|---|
Private Sub WebFormReady(ByRef Ready As Boolean) OpenForm("TestForm", "Index:Subform1", "") End Sub |
| CX Code |
|---|
private void WebFormReady(ref Boolean Ready) { OpenForm("TestForm", "Index:Subform1", ""); } |
- Applies to
Form

