列フィルタリングをオンにして RadGrid を使用しています。データを Excel にエクスポートすると、フィルター行が原因と思われるデータの上部と下部に常に余分な行が表示されます。列ヘッダーとデータの間に表示されます。これを隠す方法はありますか?
質問する
6143 次
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 に答える