# Load Reports

This topic explains how to load a report in the WebDesigner application.

## Content



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

```
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.

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

## See Also

[WebDesigner API](/activereportsnet/docs/v20.1/developers/create-applications/web-designer-application/web-designer-api)