Hi, I got the latest version of the TELERIK ASP.NET AJAX and my grid footer is displayed on top of the data rows, right after the header.
My page has a master grid with many grids (5) inside its template organized in html tables.
I export the grid calling "grid.MasterTableView.ExportToExcel()"
My footer is manipulated on databound as below :
How can I correct the export behavior?
My page has a master grid with many grids (5) inside its template organized in html tables.
I export the grid calling "grid.MasterTableView.ExportToExcel()"
My footer is manipulated on databound as below :
...
Dim footerItem As GridFooterItem = CType(e.Item, GridFooterItem)
footerItem("NAME").Text = "<
div
>" & var1 & "</
div
>" & String.Format("{0:0.00}", var2)
...
How can I correct the export behavior?