반응형
DataTable dt = this.GridDataSource as DataTable;
// 첫 행 추가
DataRow dr = dt.NewRow();
dt.Rows.InsertAt(dr, 0);
dt.Rows[0][this.SelectionCheckBoxFieldName] = "Y";
dt.Rows[0]["ROW_STATE"] = "C";
this.GridDataSource = dt;
this.GridDataSource.AcceptChanges();
반응형
'DevExpress&UI' 카테고리의 다른 글
GridControl Data Export to Excel (0) | 2020.11.26 |
---|---|
[DevExoress] Excel Binding for GridControl (0) | 2020.08.27 |
[BandedGridView] 밴드에 정렬이벤트부여 및 필터링(결과내 검색) (0) | 2019.10.11 |