Devexpress gridview 새로고침시 마우스 선택한곳으로 이동 2019년 9월 3일 0 comments gridViewClickRowIndex = gridView1.GetDataSourceRowIndex(e.RowHandle);// RowIndex 담기 gridView1.FocusedRowHandle = gridViewClickRowIndex; // RowIndex로 포커스 이동 c#, devexpress, focus, gridview
Devexpress gridview 에 셀에 값 넣기 2019년 9월 2일 0 comments if(gridView[iTabNo].GetFocusedRowCellValue("컬럼명").ToString().Trim() == "") { gridView[iTabNo].SetFocusedRowCellValue("컬럼명", 삽입할 값); } c#, devexpress, gridview