Guides/Dashboards-v2.md
... ...
@@ -16,21 +16,23 @@ Izenda now offers its new Angular.js Dashboard Designer / Viewer with the platfo
16 16
17 17
##Webforms
18 18
19
-1. Update as normal by downloading and replacing the bin and resources folder
20
-2. Download the full Webforms Kit and take the Dash.aspx file and copy it to your project.
21
-1. Update Dashboards.Master
22
-3. In the global, update the dashboard viewer setting to AdHocSettings.DashboardViewer = "Dash.aspx";
19
+1. [Download](http://www.izenda.com/update-your-izenda-version/) the full Webforms kit and replace the bin and resources folders within your projectt
20
+2. Take the Dash.aspx and Dash.aspx.cs files from the downloaded kit and copy it to your project
21
+3. Update Dashboards.Master with the new changes
22
+4. In the global, update the dashboard viewer setting to AdHocSettings.DashboardViewer = "Dash.aspx";
23 23
24 24
##MVC
25 25
26
-1. Download the full MVC kit for 6.9
26
+1. [Download ](http://www.izenda.com/update-your-izenda-version/)the full MVC kit for 6.9
27 27
2. Copy the bin and resources from the kit downloaded into your project
28
-3. Add: _Dashboards-New-Head-Angular, _Dashboards-New-Body-Angular and Dash files to Views/Reporting. Ensure they are included in the project.
29
-4. Update the IzendaReportingController.cs to include
28
+3. Add: _Dashboards-New-Head-Angular, _Dashboards-New-Body-Angular, _SiteLayout and Dash files to Views/Reporting. Ensure they are included in the project
29
+4. Update the IzendaReportingController.cs to include:
30
+```c#
30 31
public ActionResult Dash() {
31 32
32 33
return View();
33 34
}
35
+```
34 36
5. In the global, update the following: AdHocSettings.DashboardViewer = "Dash" and AdHocSettings.DashboardDesignerUrl = "Dash";
35 37
36 38
### Tips