1. 컬럼값 변경 후 바로 해당 행의 Row State가 업데이트 되지 않는 경우 강제로 업데이트

    - gridView.GetFocusedDataRow().EndEdit();



2. 컬럼유형을 CheckBox로 설정한 경우 체크 후 바로 Row State 강제 업데이트

    - RepositoryItemCheckEdit.CheckedChanged 이벤트

    - gridView.SetFocusedRowCellValue("FIELD_NAME", (sender as DevExpress.XtraEditors.CheckEdit).Checked ? 1 : 0);



3. Format String

    - https://documentation.devexpress.com/#WindowsForms/CustomDocument2141










Posted by 하이안
,