bf58b5c4e56ef48a47e6a960ae0eccd84e51dc31
Guides/Toolbar-Buttons.md
| ... | ... | @@ -278,4 +278,23 @@ This button allows a user to open the current report in the Report Designer. |
| 278 | 278 | <span class="hide" lang-text="js_OpenInDesigner">Open in designer</span> |
| 279 | 279 | </button> |
| 280 | 280 | </div> |
| 281 | -``` |
|
| ... | ... | \ No newline at end of file |
| 0 | +``` |
|
| 1 | + |
|
| 2 | +#Report Designer |
|
| 3 | + |
|
| 4 | +Buttons and tabs in the Report Designer are controlled from within the core product. Manipulating these buttons and tabs requires the use of properties within the Global.asax. |
|
| 5 | + |
|
| 6 | +##Buttons |
|
| 7 | + |
|
| 8 | +###Report List Button |
|
| 9 | + |
|
| 10 | + |
|
| 11 | + |
|
| 12 | +The report list button is used to jump right into the report list. To disable the Report List button in the designer, you need to set the ReportList property to be empty or null. |
|
| 13 | + |
|
| 14 | +```csharp |
|
| 15 | +AdHocSettings.ReportList = ""; |
|
| 16 | +``` |
|
| 17 | + |
|
| 18 | +### |
|
| 19 | +##Tabs |
|
| ... | ... | \ No newline at end of file |