@using EnVisage.Code @using EnVisage.Models @model ForecastDashboardOptionsModel @{ ViewBag.Title = "Dashboard"; var allScenarioGroups = Utils.GetScenarioGroup().Where(item => !item.Text.Equals("Default")); } @*//TODO: use bundle. add and deploy minified fiels for this bundle*@ @*@Scripts.Render("~/bundles/kendo-grid")*@ @Html.RenderScript(Url.Content("~/Scripts/Kendo/kendo.all.js")) @Html.RenderScript(Url.Content("~/Scripts/Kendo/kendo.aspnetmvc.js")) @section Scripts { @Html.RenderScript("~/Scripts/amCharts/amCharts.js") @Html.RenderScript("~/Scripts/amCharts/pie.js") @Html.RenderScript("~/Scripts/amCharts/serial.js") @Html.RenderScript("~/Scripts/amCharts/xy.js") @Html.RenderScript("~/Scripts/amCharts/themes/light.js") @Html.RenderScript("~/Scripts/amCharts/plugins/responsive/responsive.js") @Html.RenderScript("~/Scripts/amCharts/custom.js") @Html.RenderScript("~/Scripts/Dashboard/pv.app.init.js") @Html.RenderScript("~/Scripts/Dashboard/pv.storage.js") @Html.RenderScript("~/Scripts/Dashboard/pv.chart.app.js") @Html.RenderScript("~/Scripts/Dashboard/pv.chart.stacked.js") @*@Html.RenderScript("~/Scripts/Dashboard/pv.chart.donut.js")*@ @Html.RenderScript("~/Scripts/Dashboard/pv.chart.bubble.js") @Html.RenderScript("~/Scripts/Dashboard/pv.chart.bar1.js") @Html.RenderScript("~/Scripts/Dashboard/pv.chart.bar2.js") @Html.RenderScript("~/Scripts/Dashboard/pv.chart.bar3.js") @Html.RenderScript("~/Scripts/bootstrap-modalmanager.js") @Html.RenderScript("~/Scripts/bootstrap-modal.js") @Html.RenderScript("~/Scripts/forecastDashboardScripts.js") @Html.RenderScript("~/Scripts/magnifyChart.js") @Html.RenderScript("~/Scripts/Plugins/Optimuse.js") @Html.RenderScript("~/Scripts/Plugins/DonutChart.js") } @section Stylesheets { @Html.RenderStyle(Url.Content("~/Content/stylesheets/kendo/web/kendo.common-bootstrap.css")) @Html.RenderStyle(Url.Content("~/Content/stylesheets/kendo/web/kendo.bootstrap.css")) @Html.RenderStyle(Url.Content("~/Content/stylesheets/xeditable.css")) @Html.RenderStyle(Url.Content("~/Content/stylesheets/magnifyChart.css")) @Html.RenderStyle(Url.Content("~/Content/stylesheets/amCharts/pv.amCharts.css")) @Html.RenderStyle("~/Content/stylesheets/bootstrap-modal-bs3patch.css") @Html.RenderStyle("~/Content/stylesheets/bootstrap-modal.css") } @section pagemenu { @Html.Partial("_pageMenu") } @Html.Partial("_filterPanel", Model)