Ejemplo n.º 1
0
        public ActionResult SaveReport()
        {
            StiReport report = StiMvcDesignerFx.GetReportObject();

            // Store the report object in the session
            Session["SaveReportTemplate"] = report;
            return(View("SaveDialog"));
        }
Ejemplo n.º 2
0
        public ActionResult PreviewReport()
        {
            DataSet data = new DataSet("Demo");

            data.ReadXml(Server.MapPath("~/Content/Data/Demo.xml"));

            StiReport report = StiMvcDesignerFx.GetReportObject();

            report.RegData(data);

            return(StiMvcDesignerFx.PreviewReportResult(report));
        }
Ejemplo n.º 3
0
        public ActionResult SaveReport()
        {
            StiReport report = StiMvcDesignerFx.GetReportObject();

            // string packedReport = report.SavePackedReportToString();
            // ...
            // The save report code here
            // ...

            // Completion of the report saving without dialog box
            return(StiMvcDesignerFx.SaveReportResult());
        }
Ejemplo n.º 4
0
        public ActionResult PreviewReport()
        {
            // Get the report template
            StiReport report = StiMvcDesignerFx.GetReportObject();

            // Register data, if necessary
            var data = new DataSet("Demo");

            data.ReadXml(Server.MapPath("~/Content/Data/Demo.xml"));
            report.Dictionary.Databases.Clear();
            report.RegData(data);

            // Return the report snapshot result to the client
            return(StiMvcDesignerFx.PreviewReportResult(report));
        }