I have a RadGridView that I set the datasource at run time. When I export it all the rows that are visible on the screen export fine, however the ones you can't see the excel row height is 3.75 pixels. (See attached screen shot) How do I get the export to export the correct format of all rows not just the ones visible? One other side note is if I scroll through the list and then export it exports correctly.
this.tSQL = "EXEC dbo.GetDetailsForCodeType '" + strSelectedCode + "','" + strSelectedCodeType + "'";
DataTable dtMarketDetails = this.da.GetDataTable(this.tSQL);
this.dgMarketDetails.DataSource = dtMarketDetails;
As a test I setup another GridView and pre set the data source and that exports just fine.