Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1315
UltraWebGrid Document Exporter
posted

Is it possible to export multiple grids to a PDF file via a file stream?  Because whenever I try it only the first grid gets exported to the file

Parents
  • 7566
    posted

    Hello legalke,

     

     

    How do you try to export them.

    I can suggest you to try this approach

     

    Infragistics.Web.UI.GridControls.WebDataGrid[] grids = new Infragistics.Web.UI.GridControls.WebDataGrid[3];

                  grids[0] = this.WebDataGrid1;

                  grids[1] = this.WebDataGrid2;

                  grids[2] = this.WebDataGrid3;

     

                  this.WebDocumentExporter1.Export(report, grids);

     

    I hope this helps.

    For any further questions do not hesitate to contact me.

     

    Sincerely,

    Georgi Sashev

    Developer Support Engineer

    Infragistics, Inc.

    http://es.infragistics.com/support

Reply Children
No Data