ActiveReports 18 .NET Edition
Developers / Create 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.

    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 }
    }