GridView.TableSource

Syntax

TableSource: PP.Prx.TableDataSource

Description

The TableSource property determines the data source for the regular report table.

Comments

The data source of the regular report table is an instance of the TableDataSource class.

Example

To execute this example, the HTML page must contain a data area named dataArea (see Example of the DataArea Component Layout). Add the changeSource function:

function changeSource() {

     dataArea.getGridView().setTableSource(new PP.Prx.TableDataSource({

            ObjectsAsImage: true,

            Source: prxReport1,

            Metabase: metabase})

}

After executing the changeSource function, data of the regular report table is changed: the table shows data of the report titled prxReport1.

See also:

GridView