Guides/Toolbar-Buttons.md
... ...
@@ -0,0 +1,20 @@
1
+[[_TOC_]]
2
+
3
+##Report Viewer
4
+
5
+All buttons in the Report Viewer are implemented in pure HTML. They all can be manipulated from Resources/html/ReportViewer-Body.ascx. To completely disable any button, simply remove it from the ascx file. If you wish to conditionally suppress a button, you can write conditional logic in your ascx to hide it based on your own custom logic.
6
+
7
+###Report List Button
8
+
9
+![Report List Icon](http://wiki.izenda.us/Guides/Toolbar-Buttons/report-list.png)
10
+
11
+The report list button is used to jump right into the report list. This is the code within the ReportViewer-Body.ascx that renders this button:
12
+```html
13
+<a class="btn" id="rlhref" href="ReportList.aspx" lang-title="js_Reportlist" title="Report list">
14
+ <img class="icon" src="rs.aspx?image=ModernImages.report-list.png" lang-alt="js_Reportlist" alt="Report list" />
15
+ <span class="hide" lang-text="js_Reportlist">Report list</span>
16
+</a>
17
+```
18
+
19
+###Save Options Button
20
+