rowselect event

Previous Next

The rowselect event occurs when a new row is selected in the data source in a multi-record UI control such as a GridControl or ReplicatedColumnsControl. Such new row selection may be executed programmatically by calling the select() function of the Rows object.

If you refer to this event in the context of a specific data source, the action is triggered only when data for that data source is received:

$.udb(datasource).on("rowselect", function(evt, options) { ... });

 

If you refer to this event in the context of the page itself, the action is triggered whenever data for any data source in the page is received:

$.udb.on("rowselect", function(evt, options) { ... });

 

 

See Also

Data Source Events