Guides/Toolbar-Buttons.md
... ...
@@ -105,4 +105,93 @@ This button allows for printing of a report as a PDF file.
105 105
<b lang-text="js_PrintHTML">Print HTML</b><br>
106 106
<span lang-text="js_PrintDirectlyMessage">Print directly from your browser, the fastest way for modern browsers</span>
107 107
</a></li>
108
-```
... ...
\ No newline at end of file
0
+```
1
+
2
+##Exports Button
3
+
4
+![Exports Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/exports2.png)
5
+
6
+Clicking the downward facing triangle next to the Exports icon will reveal further exporting options; Excel, Word, CSV, XML, and RTF.
7
+
8
+```html
9
+<button type="button" class="btn" title="Excel" onclick="responseServer.OpenUrlWithModalDialogNewCustomRsUrl('rs.aspx?output=XLS(MIME)', 'aspnetForm', 'reportFrame', nrvConfig.ResponseServerUrl);">
10
+ <img class="icon" src="rs.aspx?image=ModernImages.excel.png" alt="Get Excel file" />
11
+ <span class="hide" lang-text="js_ExportToExcel">Export to Excel</span>
12
+</button>
13
+
14
+<button type="button" class="btn dropdown-toggle" data-toggle="dropdown">
15
+ <span class="caret"></span>
16
+</button>
17
+```
18
+
19
+###Excel Button
20
+
21
+![Excel Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/excel.png)
22
+
23
+Clicking this causes the current report to be exported as an excel document.
24
+
25
+```html
26
+<li><a href="javascript:void(0)" title="" style="min-width: 18em;" onclick="responseServer.OpenUrlWithModalDialogNewCustomRsUrl('rs.aspx?output=XLS(MIME)', 'aspnetForm', 'reportFrame', nrvConfig.ResponseServerUrl);">
27
+ <img class="icon" src="rs.aspx?image=ModernImages.xls-32.png" alt="" />
28
+ <b lang-text="js_ExportToExcel">Export to Excel</b><br>
29
+ <span lang-text="js_ExportToExcelMessage">File for Microsoft's spreadsheet application</span>
30
+</a></li>
31
+```
32
+
33
+###Word Button
34
+
35
+![Word Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/word.png)
36
+
37
+Clicking this causes the current report to be exported as a word document.
38
+
39
+```html
40
+<li><a href="javascript:void(0)" title="" onclick="responseServer.OpenUrlWithModalDialogNewCustomRsUrl('rs.aspx?output=DOC', 'aspnetForm', 'reportFrame', nrvConfig.ResponseServerUrl);">
41
+ <img class="icon" src="rs.aspx?image=ModernImages.word-32.png" alt="" />
42
+ <b lang-text="js_WordDocument">Word document</b><br>
43
+ <span lang-text="js_WordDocumentMessage">File for Microsoft's word processor, most widely-used office application</span>
44
+</a></li>
45
+```
46
+
47
+###CSV Button
48
+
49
+![CSV Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/csv.png)
50
+
51
+Clicking this causes the current report to be exported in CSV format.
52
+
53
+```html
54
+<li><a href="javascript:void(0)" title="" onclick="responseServer.OpenUrlWithModalDialogNewCustomRsUrl('rs.aspx?output=CSV', 'aspnetForm', 'reportFrame', nrvConfig.ResponseServerUrl);">
55
+ <img class="icon" src="rs.aspx?image=ModernImages.csv-32.png" alt="" />
56
+ <b lang-text="js_CSV">CSV</b><br>
57
+ <span lang-text="js_CSVMessage">Stores tabular data in text file, that can be used in Google Docs</span>
58
+</a></li>
59
+```
60
+
61
+###XML Button
62
+
63
+![XML Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/xml.png)
64
+
65
+Clicking this causes the current report to be exported in XML format.
66
+
67
+```html
68
+<li><a href="javascript:void(0)" title="" onclick="responseServer.OpenUrlWithModalDialogNewCustomRsUrl('rs.aspx?output=XML', 'aspnetForm', 'reportFrame', nrvConfig.ResponseServerUrl);">
69
+ <img class="icon" src="rs.aspx?image=ModernImages.xml-32.png" alt="" />
70
+ <b lang-text="js_XML">XML</b><br>
71
+ <span lang-text="js_XMLMessage">Both human-readable and machine-readable text file</span>
72
+</a></li>
73
+```
74
+
75
+###RTF Button
76
+
77
+![RTF Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/rtf.png)
78
+
79
+Clicking this causes the current report to be exported in RTF format.
80
+
81
+```html
82
+<li id="RTFExportButton"><a href="javascript:void(0)" title="" onclick="responseServer.OpenUrlWithModalDialogNewCustomRsUrl('rs.aspx?output=RTF', 'aspnetForm', 'reportFrame', nrvConfig.ResponseServerUrl);">
83
+ <img class='icon' src="rs.aspx?image=ModernImages.rtf-32.png" alt="" />
84
+ <b lang-text='js_RTF'>RTF</b><br>
85
+ <span lang-text='js_RTFMessage'>File format for cross-platform document interchange</span>
86
+ </a>
87
+</li>
88
+```
89
+