Events
You can subscribe to various events to listen to user interactions. In the top level of the code you can use the following notation.
Example Event
We set a global, page, and control event listeners.
// selector usage
// $('<page>', '<controller>').<event> = function() {};
// setting global event listener
$().beforeSetDisposition = function() {};
// setting page event listener
$('page1').onLoad = function() {};
// setting controller event listener
$('page1', 'controller1').afterSetData = function() {};
Note: The control and page items are optional. If you exclude them, you can set a control, page, and global events.
Comments
Can’t find what you need? Use the comment section below to connect with others, get answers from our experts, or share your ideas with us.
There are no comments yet.