Guides/Toolbar-Buttons.md
... ...
@@ -4,11 +4,12 @@
4 4
5 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 6
7
-##Report List Button
7
+**Report List Button**
8 8
9 9
![Report List Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/report-list.png)
10 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:
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
+
12 13
```html
13 14
<a class="btn" id="rlhref" href="ReportList.aspx" lang-title="js_Reportlist" title="Report list">
14 15
<img class="icon" src="rs.aspx?image=ModernImages.report-list.png" lang-alt="js_Reportlist" alt="Report list" />
... ...
@@ -16,7 +17,7 @@ The report list button is used to jump right into the report list. This is the c
16 17
</a>
17 18
```
18 19
19
-##Save Options
20
+**Save Options**
20 21
21 22
![Save Options](http://wiki.izenda.us/Guides/Toolbar-Buttons/save-options.png)
22 23
... ...
@@ -33,7 +34,7 @@ Clicking the downward facing triangle next to the save icon will reveal further
33 34
</button>
34 35
```
35 36
36
-###Save
37
+**Save**
37 38
38 39
![Save Options Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/save-32.png)
39 40
... ...
@@ -47,11 +48,11 @@ The save button simply saves the current report.
47 48
</a></li>
48 49
```
49 50
50
-###Save As
51
+**Save As**
51 52
52 53
![Save As Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/save-as-32.png)
53 54
54
-This button allows a user to save the current report with a specific name.
55
+This button allows a user to save the current report with a specific name, and optionally, a report category.
55 56
56 57
```html
57 58
<li><a href="javascript:void(0)" onclick="javascript:ShowSaveAsDialog();">
... ...
@@ -62,7 +63,7 @@ This button allows a user to save the current report with a specific name.
62 63
63 64
```
64 65
65
-##Print Options
66
+**Print Options**
66 67
67 68
![Print Options Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/print-options.png)
68 69
... ...
@@ -79,7 +80,7 @@ Clicking the downward facing triangle next to the print icon will reveal further
79 80
</button>
80 81
```
81 82
82
-###HTML Print
83
+**HTML Print**
83 84
84 85
![HTML Print Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/html-print.png)
85 86
... ...
@@ -93,7 +94,7 @@ This button allows for direct printing of a report from the browser.
93 94
</a></li>
94 95
```
95 96
96
-###PDF Print
97
+**PDF Print**
97 98
98 99
![PDF Print Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/pdf-print.png)
99 100
... ...
@@ -107,7 +108,7 @@ This button allows for printing of a report as a PDF file.
107 108
</a></li>
108 109
```
109 110
110
-##Exports Button
111
+**Exports Button**
111 112
112 113
![Exports Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/exports2.png)
113 114
... ...
@@ -124,7 +125,7 @@ Clicking the downward facing triangle next to the Exports icon will reveal furth
124 125
</button>
125 126
```
126 127
127
-###Excel Button
128
+**Excel Button**
128 129
129 130
![Excel Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/excel.png)
130 131
... ...
@@ -138,7 +139,7 @@ Clicking this causes the current report to be exported as an excel document.
138 139
</a></li>
139 140
```
140 141
141
-###Word Button
142
+**Word Button**
142 143
143 144
![Word Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/word.png)
144 145
... ...
@@ -152,7 +153,7 @@ Clicking this causes the current report to be exported as a word document.
152 153
</a></li>
153 154
```
154 155
155
-###CSV Button
156
+**CSV Button**
156 157
157 158
![CSV Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/csv.png)
158 159
... ...
@@ -166,7 +167,7 @@ Clicking this causes the current report to be exported in CSV format.
166 167
</a></li>
167 168
```
168 169
169
-###XML Button
170
+**XML Button**
170 171
171 172
![XML Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/xml.png)
172 173
... ...
@@ -180,7 +181,7 @@ Clicking this causes the current report to be exported in XML format.
180 181
</a></li>
181 182
```
182 183
183
-###RTF Button
184
+**RTF Button**
184 185
185 186
![RTF Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/rtf.png)
186 187
... ...
@@ -195,7 +196,7 @@ Clicking this causes the current report to be exported in RTF format.
195 196
</li>
196 197
```
197 198
198
-##Send Button
199
+**Send Button**
199 200
200 201
![Send Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/send.png)
201 202
... ...
@@ -210,7 +211,7 @@ Clicking this will send the current report via email.
210 211
</div>
211 212
```
212 213
213
-##Results Per Page Button
214
+**Results Per Page Button**
214 215
215 216
![Results Per Page Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/results.png)
216 217
... ...
@@ -265,7 +266,7 @@ The following is the code for the 5 record options provided by default.
265 266
</ul>
266 267
```
267 268
268
-##Open in Designer Button
269
+**Open in Designer Button**
269 270
270 271
![Results Per Page Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/designer.png)
271 272
... ...
@@ -280,13 +281,11 @@ This button allows a user to open the current report in the Report Designer.
280 281
</div>
281 282
```
282 283
283
-#Report Designer
284
-
285
-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.
284
+##Report Designer Buttons
286 285
287
-##Buttons
286
+Buttons in the Report Designer are controlled from within the core product in your CustomAdHocConfig class. Manipulating these buttons requires the use of properties within the Global.asax. Review [[this article|http://wiki.izenda.us/FAQ/Hiding-Buttons-and-Tabs#Report-Designer-Buttons]] for working with the report designer buttons. To simply see what these buttons look like on the Report Designer, continue to scroll down.
288 287
289
-###Report List
288
+**Report List**
290 289
291 290
![Report List Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/reportlist.png)
292 291
... ...
@@ -296,7 +295,7 @@ The report list button is used to jump right into the report list. To disable th
296 295
AdHocSettings.ReportList = "";
297 296
```
298 297
299
-###New
298
+**New**
300 299
301 300
![New Report Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/new.png)
302 301
... ...
@@ -306,7 +305,7 @@ The New Report button begins designing a report from the beginning. To disable t
306 305
AdHocSettings.ShowNewButtons = false;
307 306
```
308 307
309
-###Save
308
+**Save**
310 309
311 310
![Save Report Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/savedesigner.png)
312 311
... ...
@@ -316,7 +315,7 @@ The Save Report button saves the report you are currently designing. To disable
316 315
AdHocSettings.ShowSaveControls = false;
317 316
```
318 317
319
-###Save As
318
+**Save As**
320 319
321 320
![Save Report As Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/saveAsDesigner.png)
322 321
... ...
@@ -326,7 +325,7 @@ The Save Report As button allows the user to save the report they'll currently w
326 325
AdHocSettings.ShowSaveAsToolbarButton = false;
327 326
```
328 327
329
-###PDF Print
328
+**PDF Print**
330 329
331 330
![PDF Print Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/pdfDesigner.png)
332 331
... ...
@@ -335,13 +334,13 @@ The PDF Print button will export a PDF version of the report being designed. To
335 334
```csharp
336 335
AdHocSettings.ShowPDFButton = false;
337 336
```
338
-###HTML Print
337
+**HTML Print**
339 338
340 339
![HTML Print Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/htmlPrint.png)
341 340
342 341
The HTML Print button allows a user to print the current report being designed.
343 342
344
-###Show SQL
343
+**Show SQL**
345 344
346 345
![Show SQL Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/sql.gif)
347 346
... ...
@@ -351,7 +350,7 @@ The SQL button shows the generated SQL for the report being designed. To disable
351 350
AdHocSettings.ShowSqlOutputIcon = false;
352 351
```
353 352
354
-###CSV
353
+**CSV**
355 354
356 355
![CSV Export Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/csvDesigner.gif)
357 356
... ...
@@ -361,7 +360,7 @@ THE CSV Export button causes the report being designed to be exported in csv for
361 360
AdHocSettings.ShowCSVButton = false;
362 361
```
363 362
364
-###Excel
363
+**Excel**
365 364
366 365
![Excel Export Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/excelDesigner.gif)
367 366
... ...
@@ -371,7 +370,7 @@ The Excel Export button causes the report being designed to be exported in excel
371 370
AdHocSettings.ShowXLSButton = false;
372 371
```
373 372
374
-###Word
373
+**Word**
375 374
376 375
![Doc Export Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/wordDesigner.gif)
377 376
... ...
@@ -381,13 +380,13 @@ The Doc Export button exports the report being designed in a .doc(MS Word) forma
381 380
AdHocSettings.ShowDOCButton = false;
382 381
```
383 382
384
-###XML
383
+**XML**
385 384
386 385
![XML Export Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/xmlDesigner.gif)
387 386
388 387
The XML export button exports the report being designed as a .xml file.
389 388
390
-###RTF
389
+**RTF**
391 390
392 391
![RTF Export Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/rtfDesigner.gif)
393 392
... ...
@@ -397,7 +396,7 @@ The RTF export button exports the report being designed as a .rtf file. To disab
397 396
AdHocSettings.ShowRTFButton = false;
398 397
```
399 398
400
-###Email
399
+**Email**
401 400
402 401
![Email Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/email.gif)
403 402
... ...
@@ -407,7 +406,7 @@ The email button allows the user to email the current report. To disable it, set
407 406
AdHocSettings.ShowClientEmailButton = false;
408 407
```
409 408
410
-###Settings
409
+**Settings**
411 410
412 411
![Settings Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/settings.gif)
413 412
... ...
@@ -417,13 +416,13 @@ The settings button takes the user to the Settings.aspx page. To disable it, set
417 416
AdHocSettings.ShowSettingsButton = false;
418 417
```
419 418
420
-###Results
419
+**Results**
421 420
422 421
![Results Per Page Dropdown](http://wiki.izenda.us/Guides/Toolbar-Buttons/resultsDesigner.png)
423 422
424 423
The Results dropdown allows the user to select how many records to display.
425 424
426
-###Hide Help
425
+**Hide Help**
427 426
428 427
![Show/Hide Help Button](http://wiki.izenda.us/Guides/Toolbar-Buttons/help.gif)
429 428
... ...
@@ -433,9 +432,11 @@ The Hide Help button toggles the side help panel.TO disable it, set ShowHelpButt
433 432
AdHocSettings.ShowHelpButton = false;
434 433
```
435 434
436
-##Tabs
435
+##Report Designer Tabs
437 436
438
-###Data Sources
437
+Tabs in the Report Designer are also controlled from within the core product in your CustomAdHocConfig class. Manipulating these tabs requires the use of properties within the Global.asax. You can review [[this article|http://wiki.izenda.us/FAQ/Hiding-Buttons-and-Tabs#Report-Designer-Tabs]] for concise information on manipulating these tabs, or you can get a detailed view by scrolling down.
438
+
439
+**Data Sources**
439 440
440 441
![Data Sources Tab](http://wiki.izenda.us/Guides/Toolbar-Buttons/dstab.png)
441 442
... ...
@@ -445,7 +446,7 @@ The Data Sources tabs allow report designers to add/remove data sources for a re
445 446
AdHocSettings.ShowDataSourcesTab = false;
446 447
```
447 448
448
-###Fields
449
+**Fields**
449 450
450 451
![Fields Tab](http://wiki.izenda.us/Guides/Toolbar-Buttons/fields.png)
451 452
... ...
@@ -455,7 +456,7 @@ The fields tab allows the user to add or modify the fields reported on in a repo
455 456
AdHocSettings.ShowFieldsTab = false;
456 457
```
457 458
458
-###Summary
459
+**Summary**
459 460
460 461
![Summary Tab](http://wiki.izenda.us/Guides/Toolbar-Buttons/summary.png)
461 462
... ...
@@ -465,7 +466,7 @@ The summary tab allows the user to add or modify a summary section in a report t
465 466
AdHocSettings.ShowSummaryTab = false;
466 467
```
467 468
468
-###Chart
469
+**Chart**
469 470
470 471
![Chart Tab](http://wiki.izenda.us/Guides/Toolbar-Buttons/chart.png)
471 472
![Chart2 Tab](http://wiki.izenda.us/Guides/Toolbar-Buttons/chart2.png)
... ...
@@ -476,7 +477,7 @@ The chart tab allows the user to add or modify trend, pie, plot, and bar charts
476 477
AdHocSettings.ShowChartTab = false;
477 478
```
478 479
479
-###Gauge
480
+**Gauge**
480 481
481 482
![Gauge Tab](http://wiki.izenda.us/Guides/Toolbar-Buttons/gauge.png)
482 483
... ...
@@ -486,7 +487,7 @@ The gauges tab allows the user to add or modify gauges used in a report through
486 487
AdHocSettings.ShowGaugeTab = false;
487 488
```
488 489
489
-###Map
490
+**Map**
490 491
491 492
![Map Tab](http://wiki.izenda.us/Guides/Toolbar-Buttons/map.png)
492 493
... ...
@@ -496,7 +497,7 @@ The map tab allows the user to add or modify a map to be used in a report throug
496 497
AdHocSettings.ShowMapTab = false;
497 498
```
498 499
499
-###Misc
500
+**Misc**
500 501
501 502
![Misc Tab](http://wiki.izenda.us/Guides/Toolbar-Buttons/misc.png)
502 503
... ...
@@ -506,7 +507,7 @@ The misc tab allows the user to set the title, description, header, footer, repo
506 507
AdHocSettings.ShowMiscTab = false;
507 508
```
508 509
509
-###Style
510
+**Style**
510 511
511 512
![Style Tab](http://wiki.izenda.us/Guides/Toolbar-Buttons/style.png)
512 513
... ...
@@ -516,7 +517,7 @@ The style tab allows the user to modify the report colors, print options, visual
516 517
AdHocSettings.ShowStyleTab = false;
517 518
```
518 519
519
-###Filters
520
+**Filters**
520 521
521 522
![Filters Tab](http://wiki.izenda.us/Guides/Toolbar-Buttons/filters.png)
522 523
... ...
@@ -526,7 +527,7 @@ The filters tab allows the user to add or modify filters used on report data thr
526 527
AdHocSettings.ShowFiltersTab = false;
527 528
```
528 529
529
-###Preview
530
+**Preview**
530 531
531 532
![Preview Tab](http://wiki.izenda.us/Guides/Toolbar-Buttons/preview.png)
532 533