3

我正在使用打开了列过滤的 RadGrid。当我将数据导出到 Excel 时,我总是在数据的顶部和底部得到一个额外的行,这似乎是由于过滤器行。它出现在列标题和数据之间。有什么办法可以隐藏这个吗?

4

1 回答 1

5
void Button1_Click(object sender, EventArgs e)
{
    exporting = true;
    RadGrid1.Rebind();
    RadGrid1.MasterTableView.ExportToExcel();
}

void RadGrid1_ItemCreated(object sender, Telerik.Web.UI.GridItemEventArgs e)
{
    if (exporting && e.Item.ItemType == Telerik.Web.UI.GridItemType.FilteringItem)
    {
        e.Item.Visible = false;
    }
}
于 2012-08-14T07:58:27.060 回答