SMART datagrid v.1 > Reporting > Classes

Back  Forward

DLReport.GridReport  class

Report Model. 

It contains all settings for the reporting such as band objects and global styles which make up the report. 

You do not need to directly create this object. If you transfer setting object for this model when calling DLReport.preview, the object will be created internally. 

Base Classes
DLBase
Properties
bands
grid
page
pageFooter
pageHeader
pageTitle
printGrid
report
reportFooter
reportHeader
Inherited Methods
DLBase.assign
DLBase.getProperties
DLBase.getProperty
DLBase.setProperties
DLBase.setProperty
DLBase.toggle

 

Code -1
    var report = {  // GridReport
    };
    var data = [    // ReportData array
    ];
    var options = { // PrintOptions
    };
    DLReport.preview(grid, report, data, options, true);
See Also
preview
ReportData
PrintOptions
Examples
Hello Report