95a5bb6aa0ad16cc5c746b8b14b6278f38b8c702
FAQ/Formatting/How-do-I-Add-bulk-CSV-to-the-report-viewer.md
| ... | ... | @@ -0,0 +1,30 @@ |
| 1 | +#How do I Add bulk CSV to the report viewer |
|
| 2 | + |
|
| 3 | +[[_TOC_]] |
|
| 4 | + |
|
| 5 | +This code will show the bulk csv option export type in the Report Viewer. |
|
| 6 | + |
|
| 7 | +```csharp |
|
| 8 | +//show (unhide) the option for bulk csv |
|
| 9 | + |
|
| 10 | +AdHocSettings.OutputTypes["BULKCSV"].Hidden = false; |
|
| 11 | + |
|
| 12 | +//hide the option for csv |
|
| 13 | + |
|
| 14 | +AdHocSettings.OutputTypes["CSV"].Hidden = true; |
|
| 15 | + |
|
| 16 | +``` |
|
| 17 | + |
|
| 18 | +##String keys for other output types |
|
| 19 | + |
|
| 20 | +The string keys which are available are: |
|
| 21 | + |
|
| 22 | +* csv |
|
| 23 | +* pdf |
|
| 24 | +* doc |
|
| 25 | +* xls |
|
| 26 | +* sql |
|
| 27 | +* bulkcsv |
|
| 28 | +* xml |
|
| 29 | +* odt (open office) |
|
| 30 | +* rtf |
|
| ... | ... | \ No newline at end of file |
FAQ/How-do-I-Add-bulk-CSV-to-the-report-viewer.md
| ... | ... | @@ -1,30 +0,0 @@ |
| 1 | -#How do I Add bulk CSV to the report viewer |
|
| 2 | - |
|
| 3 | -[[_TOC_]] |
|
| 4 | - |
|
| 5 | -This code will show the bulk csv option export type in the Report Viewer. |
|
| 6 | - |
|
| 7 | -```csharp |
|
| 8 | -//show (unhide) the option for bulk csv |
|
| 9 | - |
|
| 10 | -AdHocSettings.OutputTypes["BULKCSV"].Hidden = false; |
|
| 11 | - |
|
| 12 | -//hide the option for csv |
|
| 13 | - |
|
| 14 | -AdHocSettings.OutputTypes["CSV"].Hidden = true; |
|
| 15 | - |
|
| 16 | -``` |
|
| 17 | - |
|
| 18 | -##String keys for other output types |
|
| 19 | - |
|
| 20 | -The string keys which are available are: |
|
| 21 | - |
|
| 22 | -* csv |
|
| 23 | -* pdf |
|
| 24 | -* doc |
|
| 25 | -* xls |
|
| 26 | -* sql |
|
| 27 | -* bulkcsv |
|
| 28 | -* xml |
|
| 29 | -* odt (open office) |
|
| 30 | -* rtf |
|
| ... | ... | \ No newline at end of file |