ActiveReports 19 .NET Edition
Developers / Create Designer and Viewer Applications / WebDesigner Application / Load Reports
In This Topic
    Load Reports
    In This Topic

    By default, the instance of the WebDesigner component displays the blank RDLX report.
    To load an existing report in the designer, say a section report, use the code as shown below.

    Copy Code
    GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
        document: {
            id: 'RPX/Invoice.rpx',
            type: { platform: 'rpx', type: 'report' },
        }
    

     

    To open a report kept on your machine, you need to enable the 'Open' button as shown below.

    Copy Code
    GrapeCity.ActiveReports.Designer.create('#ar-web-designer', {
         appBar: {
             openButton: { visible: true }
    }
    
    See Also