I need to export my already filtered data grid, but my requirement says that inactive records should not be exported, so i'm trying to do this :
01.
grdCct.ExportSettings.IgnorePaging =
true
;
02.
grdCct.ExportSettings.ExportOnlyData =
true
;
03.
grdCct.ExportSettings.Csv.FileExtension =
"csv"
;
04.
grdCct.ExportSettings.FileName =
"Export_"
+ DateTime.Now.ToShortDateString();
05.
// Column 6 is my "Active" column as text "Y/N"
06.
grdCct.Columns[6].CurrentFilterValue=
"Y"
;
07.
grdCct.MasterTableView.Rebind();
08.
09.
grdCct.MasterTableView.ExportToCSV();
Can anybody tell me the correct way to accomplish this?.
Regards,