Posted 19 Dec 2011 Link to this post
protected
void
imgBtnExportCSV_Click(
object
sender, EventArgs e)
{
foreach
(GridDataItem item
in
grdLeadList.MasterTableView.Items)
//loop through each grid item
if
(item.Selected)
selectedItems.Add(item.ItemIndex);
}
// for particuler item
item[
"CompanyName"
].Font.Name =
"Calibri"
;
].Style[
"font-size"
] =
"8pt"
"background-color"
"#FFF"
"vertical-align"
"middle"
grdLeadList.ExportSettings.ExportOnlyData =
true
grdLeadList.ExportSettings.OpenInNewWindow =
grdLeadList.MasterTableView.Columns.FindByUniqueName(
"ClientSelectColumn"
).Visible =
false
"EditCommandColumn1"
grdLeadList.ExportSettings.FileName =
"ColderLeads"
grdLeadList.MasterTableView.ExportToCSV();
Is it possible to format CSV export from radGrid?
Thanks!
Posted 13 Sep 2016 Link to this post
Posted 14 Sep 2016 in reply to Danniel Link to this post
Hello Felipe,
Please share what you have tried.
Thanks, Jayesh Goyani
Posted 14 Sep 2016 in reply to Jayesh Goyani Link to this post