I'm passing the execution context as a first parameter to my form load event handler.
Here is my code:
function checkSender(executionContext) {
var formContext = executionContext.getFormContext(); // get formContext
}
When the page loads, I get executionContext is undefined error.
How can I fix this?