$.udb(ds).trigger()
note
This article is about the trigger() function of the DataSourceContainer object.
$.udb(ds).trigger()
Triggers an event (in the same way as in the jQuery implementation).
Returns the 'this' object.
Syntax
$.udb( *ds* ).trigger( *eventType*, *data* )
The optional ds is a data source selector.
The required eventType is a string that identifies the event to be triggered. The possible values for the 'eventType' parameter are described in the Events reference section.
The optional data is an array of additional parameters to pass along to the event handler.
Example
$.udb('EMP').on('rowselect', function(event, r) {
alert('Row: ' + r.index());
});
$.udb('EMP').trigger('rowselect');