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
Hi,
If you need further assistance do not hesitate to contact me.
Sincerely,
Georgi Sashev
Developer Support Engineer
Infragistics, Inc.
http://es.infragistics.com/support
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);
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.