Home

alt text

Welcome to the Application API Reference documentation.

This API is normally used by placing an Event on a Widget using the AppSynergy visual designer. When the event fires it calls your JavaScript code which can access all of the objects in your application via this API.

A typical usage pattern is something like this:

let reportWidget = parasql.app.getWidgetById('ID12345');
let dataTable = reportWidget.getDataTable();
let rows = dataTable.getRows();
for (let i = 0; i < rows.length; i++) {
    let col4Str = rows[i].getValueAt(3).getString(); // get the string value in the 3rd column
    // do something interesting
}

To learn more we suggest you start by reading each namespace overview.

Copyright (c) ParaSQL LLC 2024. All rights reserved.

License and Terms of Service