Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Executes the data source query and displays the records that are retrieved.
Syntax
public void executeQuery()
Run On
Client
Remarks
This method is executed when a form is opened for data display.
The executeQuery method can be overridden on a form data source by right-clicking the Methods node under the data source, pointing to Override Method, and then clicking executeQuery.
Examples
The following example executes a data source query in response to a tab page activation event.
public void pageActivated()
{
monday_ds.executeQuery();
super();
}
See Also
FormDataSource.queryRun Method
FormDataSource.linkActive Method