Navigation.md
... ...
@@ -0,0 +1,53 @@
1
+#####Navigation
2
+###Introduction
3
+
4
+Navigation can be customized globally, for all users, by using the settings.aspx page. It can also be customized on a per-user basis. The two pages which are generally affected most by navigation are the report viewer and the report list.
5
+
6
+###Report List Navigation
7
+
8
+The Reports List page can be completely re-written if you choose. You use the AdHocSettings.AdHocConfig class to return a list of filtered reports, which could then be put into a table or any other html format. The query string format for the links to point to the other pages is as follows, where ReportName is the actual report name from the filtered reports list:
9
+
10
+* Report Viewer links: ReportViewer.aspx?rn=ReportName
11
+* Report Designer links: ReportDesigner.aspx?rn=ReportName&tab=Fields
12
+
13
+By creating a page with these links, you can completely control the Report List navigation. You can also display buttons or other links which further control navigation or integration with your product.
14
+
15
+###Report Viewer Navigation Using Query String Parameters
16
+
17
+The report viewer provides the ability to give links to the users which are generated as reports. This means that you can provide a link to a user and when that link is clicked upon, a report will automatically generate in the needed format and a Download load file dialog will appear. The user does not need to be taken to the page in a browser. The following output types are supported:
18
+
19
+* Portable Document Format (pdf): "&output=pdf"
20
+ * Sample link [[http://www.izenda.com/bi/ReportViewer.aspx?rn=Product+List&output=pdf]]
21
+* Microsoft Excel Format: "&output=xls"
22
+ * Sample link [[http://www.izenda.com/bi/ReportViewer.aspx?rn=Product+List&output=xls]]
23
+* Microsoft Word Format: "&output=csv"
24
+ * Sample link [[http://www.izenda.com/bi/ReportViewer.aspx?rn=Product+List&output=csv]]
25
+* XML Format: "&output=xml"
26
+ * Sample link [[http://www.izenda.com/bi/ReportViewer.aspx?rn=Product+List&output=xml]]
27
+* RTF Format: "&output=rtf"
28
+ * Sample link [[http://www.izenda.com/bi/ReportViewer.aspx?rn=Product+List&output=rtf]]
29
+
30
+#####Simple Mode
31
+
32
+Simple Mode disables the ability in the Report Viewer to load another report, export the report, or add fields and filters to the report. If there are existing filters it allows the ability to change the current filter.
33
+
34
+* Simple Mode Format: "&simple=1"
35
+ * Sample link [[http://www.izenda.com/bi/ReportViewer.aspx?rn=Department+Reports/Dashboard&simple=1]]
36
+
37
+#####Izenda Reports supports at most 5 query string parameters.
38
+
39
+It is also possible that you may want to pass a query string to Izenda which has a filter field parameter already set for the user. To accomplish this you can use the p1value, p2value, p3value, p4value, and p5value parameters. Each of the parameters corresponds to the actual order of filters on the report viewer page. So in this example we see the filter field labels in red next to the filters. Call the filters using the following naming convention:
40
+
41
+![]()
42
+
43
+**Note: The values in "Red" (p1value, etc.) above are for reference to the information below only. The Value(s) spaces need to remain "Blank" in the Report Designer.
44
+
45
+* p1value,p1value2: "Between" filter operator, ReportViewer.aspx?rn=SomeReport&p1value=1/1/2005&p1value2=1/1/2008
46
+* p2value: "Equals" filter operator,ReportViewer.aspx?rn=SomeReport&p2value=USA
47
+* p3value: "Equals" filter operatorReportViewer.aspx?rn=SomeReport&p3value=SomeCompany
48
+* p4value: "Greater Than" filter operatorReportViewer.aspx?rn=SomeReport&p4value=15
49
+* p5value: not used
50
+You can combine all the filters together and add an output type. Examine this example:
51
+
52
+* ReportViewer.aspx?rn=Product+List&p1value=1/1/2005& p1value2=1/1/2008&p2value=USA&p3value=SomeCompany& p4value=15&output=pdf
53
+Continue to [[Appearance]].
... ...
\ No newline at end of file