Constructor
new mxui/lib/form/InlineForm()
Constructs a new InlineForm
.
This is not supposed to be called directly.
Methods
destroy()
Destroy the form and its contents.
Example
mx.ui.openForm("MyFirstModule/Puppies.page.xml", {
location: "popup",
callback: function(form) {
form.destroy();
}
});
Events
onAfterShow
Called after the popup form is shown.
This method is intended to be used as shown in the example.
- Deprecated:
- use
onNavigation
event instead
- use
Example
this.connect(this.mxform, "onAfterShow", function() { });
onBeforeShow
Called after all widgets are done loading, but before the popup form is shown.
This method is intended to be used as shown in the example.
- Deprecated:
- use
onNavigation
event instead
- use
Example
this.connect(this.mxform, "onBeforeShow", function() { });