public ActionResult ReportCallbackPanelPartial(int categoryID)
        {
            ProductsByCategoriesReport report = new ProductsByCategoriesReport();

            report.CategoryExpandClicked(categoryID);
            return(PartialView("_ReportCallbackPanelPartial", report));
        }
        public ActionResult DocumentViewerExport()
        {
            ProductsByCategoriesReport report = new ProductsByCategoriesReport();

            return(ReportViewerExtension.ExportTo(report));
        }
        public ActionResult DocumentViewerPartial()
        {
            ProductsByCategoriesReport report = new ProductsByCategoriesReport();

            return(PartialView("_DocumentViewerPartial", report));
        }
        public ActionResult ReportCallbackPanelPartial()
        {
            ProductsByCategoriesReport report = new ProductsByCategoriesReport();

            return(PartialView("_ReportCallbackPanelPartial", report));
        }