将标题行添加到 RadGrid 导出的 Excel 工作表

发布于 2024-09-14 17:43:58 字数 1311 浏览 9 评论 0原文

我想将标题行添加到从 Rad 网格导出的文件中。我该怎么做?

 <telerik:RadGrid ID="RadGridHist" runat="server" DataSourceID="SqlDataSourceHist" Visible="false"
             AutoGenerateColumns="false" AllowPaging="true" AllowSorting="true" OnPageIndexChanged="RadGridHist_PageIndexChanged" 
             OnPageSizeChanged="RadGridHist_PageSizeChanged" OnItemCommand="RadGridHist_ItemCommand" OnSortCommand="RadGridHist_SortCommand" 
             OnGridExporting="RadGridHist_GridExporting" OnExcelMLExportStylesCreated="RadGridHist_ExcelMLExportStylesCreated" AllowFilteringByColumn="true" OnInit="RadGridHist_Init"
             Skin="Windows7">
             <ExportSettings ExportOnlyData="true" IgnorePaging="true" OpenInNewWindow="true" HideStructureColumns="true" >
                <Excel Format="Html" />
            </ExportSettings>
                <MasterTableView CommandItemDisplay="Top" >
                <Columns>
                   //stuff
                </Columns>
                    <CommandItemSettings ShowExportToExcelButton="true" ShowAddNewRecordButton="false" ShowRefreshButton="false"
                      ExportToExcelText="Export To Excel Spreadsheet"  />
                </MasterTableView>
            </telerik:RadGrid>

I would like to add a Title row to an exported File from a Rad Grid. How can I do this?

 <telerik:RadGrid ID="RadGridHist" runat="server" DataSourceID="SqlDataSourceHist" Visible="false"
             AutoGenerateColumns="false" AllowPaging="true" AllowSorting="true" OnPageIndexChanged="RadGridHist_PageIndexChanged" 
             OnPageSizeChanged="RadGridHist_PageSizeChanged" OnItemCommand="RadGridHist_ItemCommand" OnSortCommand="RadGridHist_SortCommand" 
             OnGridExporting="RadGridHist_GridExporting" OnExcelMLExportStylesCreated="RadGridHist_ExcelMLExportStylesCreated" AllowFilteringByColumn="true" OnInit="RadGridHist_Init"
             Skin="Windows7">
             <ExportSettings ExportOnlyData="true" IgnorePaging="true" OpenInNewWindow="true" HideStructureColumns="true" >
                <Excel Format="Html" />
            </ExportSettings>
                <MasterTableView CommandItemDisplay="Top" >
                <Columns>
                   //stuff
                </Columns>
                    <CommandItemSettings ShowExportToExcelButton="true" ShowAddNewRecordButton="false" ShowRefreshButton="false"
                      ExportToExcelText="Export To Excel Spreadsheet"  />
                </MasterTableView>
            </telerik:RadGrid>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

兔小萌 2024-09-21 17:43:58

只需将 Item 命令的标题添加到 RadGrid 即可。感谢所有精彩的答案!哈哈。

RadGridHist.MasterTableView.Caption = "Title";

Just add a caption on Item command to the RadGrid. Thanks for all the wonderful answers! haha.

RadGridHist.MasterTableView.Caption = "Title";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文