8 Answers, 1 is accepted
Currently the RadGrid does not support the desired functionality. However in the next major release - Q2 2010 the functionality for frozen panes in exported RadGrid to excel will be implemented.
Best wishes,
Radoslav
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
Yes, I confirm this functionality is already implemented. Please try the following online demo:
Regards
Daniel
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
I want to do the exact same thing, but i don't find how in the documentation. Could you point me on the right direction?
The online demo using ExcelML does not freeze the first row of the excel. It only adds filtering.
I found the solution in other people code, this is what i am using to freeze only the header row of the worksheet[0]
protected void RadGridReport_ExcelMLGridExporting(object sender, GridExcelMLWorkBookCreatedEventArgs e)
{
e.WorkBook.Worksheets[0].WorksheetOptions.AllowFreezePanes = true;
e.WorkBook.Worksheets[0].WorksheetOptions.TopRowBottomPaneNumber = 1;
e.WorkBook.Worksheets[0].WorksheetOptions.SplitHorizontalOffset = 1;
e.WorkBook.Worksheets[0].WorksheetOptions.ActivePane = 2;
}
I'm afraid this functionality is not supported for the BIFF format.
Please accept our apologies for any inconvenience caused.
Regards,
Daniel
Telerik