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 .
Do you get the same errors like before? Please send me a sample demonstrating these issues. It would be more helpful than the screenshots. Thank you.
The support contact number for India is +91 80 4151 8042.
Let me know if you need anything else.
Thanks For Replay,
Yes I checked . same thing it' happened . but it' throw the error .. hear attached webconfig screen shot also . please check .
That contact no(India No) it's going to Sales team . I need to contact technical team .
Did you check my sample? In it you can see how I refer it through the web.config.
Regarding the phone support, we have contact numbers at the bottom of http://es.infragistics.com/.
Please let me know if I could be of further assistance.
How can I assigned other assembly . because that namespace also not there in c# cs file . now am currently using web application .
please can you provide Technical person contact Number . or share with you your contact No . I will call you . same code it will work for new application(web app's) .
Thank you for your update.
You should put a reference to other assembly - Infragistics.WebUI.Documents.Excel. Currently you have a reference to the Windows Forms's Excel assembly.
Secondly you should pass the correct arguments to the Export function.
Please review my sample in my previous message.