beforecommit |
The beforecommit event may be called from web pages developed in Web Designer and processed by a USoft page engine service.
PurposeYou can use this event to block processing if the event occurs and a given condition is not satisfied. How to useFind or create an Event Listener object with Event Type = beforecommit. Event Listeners are in the Web Designer Controls catalog: Insert the event listener into the Page object. Insert a callClientScript action into the event listener. Use this action's Script property to code the behaviour that you want to see when the event occurs. A typical pattern is to specify the condition under which you want processing to be blocked, to block the process, and to give an error message in an alert box. This pattern looks like this:
You are implicitly associating the event with an event handler function. This function has an options parameter. For available options, see the Options section at the end of this help topic:
Or you can create the event handler more explicitly by calling $.udb.on(). OptionsWhen the event occurs, the following event handler function is called. You can use this function's options parameter in your event scripting.
This syntax means that you can access the success option by scripting: options.success, and that you can access the caller options by scripting options.options.caller-option. If you set success to false, processing is interrupted. As a result, the commit will not take place. Caller-options are the options exposed by the .commit() function of the calling page object. |
![]() |