onOpen - event of the PmForm object
Description:
The event is triggered when opening the PmForm object, i.e. when the form appears graphically in the window.
Parameters:
ev | (Object) Reference to an object that describes information about the event
Parameters:
Form | (Object) The PmForm object. |
---|
|
---|
Example:
The function is registered into the onOpen event.
JavaScriptSelect and copy to clipboard
var oForm = pMe.Form;
oForm.AddEvent("onOpen", "sFuncId", onTest);
function onTest(ev)
{
Pm.Debug("onOpen");
}