Hi Infragistics Team,
see the below code ( This metadata code) this code how to implemented ?
//
// Summary:
// Exports a single flat grid to the specified worksheet. Exporting starts
// from the defined row and column offsets.
public virtual void Export(WebDataGrid grid, Worksheet worksheet, int rowOffset, int columnOffset);
Now implemented in link button code.
Infragistics.Documents.Excel.Workbook workbook = new Infragistics.Documents.Excel.Workbook();
Infragistics.Documents.Excel.Worksheet worksheet = workbook.Worksheets.Add( "Test Report " );
int rowOffset = 0;
int columnOffset = 5;
//ExcelExporter.Export(exportGrid);
ExcelExporter.Export(exportGrid, workbook, rowOffset, columnOffset);
it's compiler error " it's invalided argument's .
please help on this .
Hello Nagarajan,
Thank you for contacting Infragistics support.
Could you send me a full sample demonstrating your issue?
I am attaching a working sample with excel exporting.
I am looking forward to hearing from you.
very much Thanks For Replay.
Problem:
Early used this Version=1.0.3300.0 Now Upgrading Version=15.1.20151.1018. hear attached Error screen shot .
Problem is it's dose not refer the 15.1.2015.1018 namespace it's throw compiler error. am added namespace for infragistics.web.ui.gridcontrol. & infragistics.web.ui.Editcontrol, & infagistics.Documet. Excel. Dll also Added Infragistics4.Web.v15.1, & Infragistics.Documemts.Excel.v15.1. please help on this .