Page History
...
Properties are accessible via the LANSA.setProperty and LANSA.getProperty functions.
LANSA.setProperty( myPart, "[PROPERTY]", "[Value]" );
[PROPERTY] is the name of the property and must be uppercase.
...
Methods are accessed via the LANSA.invokeMethod function:
LANSA.invokeMethod( myPart, "[METHOD]", { "[MAP]" : "[value]", "[MAP]" : "[value]" } );
[METHOD] is the name of the method and must be uppercase.
...
You can add an Event Handler to the LANSA singleton and use an anonymous function to perform some processing.
LANSA.addEventHandler( myPart, "[EVENT]", function( sender, parms )
{
var parameter = parms["[MAP]"];
});
[EVENT] is the name of the event and must be uppercase.
...