Hello,
I have a grid that i wish to export ot excel.
The code is seemingly straight forward
I have a grid that i wish to export ot excel.
The code is seemingly straight forward
protected void Button1_Click(object sender, EventArgs e)
{
radDeferredIncome.ExportSettings.IgnorePaging = true;
radDeferredIncome.ExportSettings.OpenInNewWindow = true;
radDeferredIncome.ExportSettings.ExportOnlyData = true;
radDeferredIncome.ExportSettings.Excel.Format = GridExcelExportFormat.ExcelML;
radDeferredIncome.MasterTableView.ExportToExcel();
}
The problem is any column that is of type string does not show up in excel. All the bounnd and numeric columns that have a type of Int32 do. Has anyone else had this issue? Is there a fix?
Thanks
John