반응형
ValidatingEditor 이벤트를 이용한다.
private void GridView1_ValidatingEditor(object sender, DevExpress.XtraEditors.Controls.BaseContainerValidateEditorEventArgs e) {
GridColumn col = (e as EditFormValidateEditorEventArgs).Column;
object oldValue = gridView1.GetFocusedRowCellValue(col);
object newValue = e.Value;
}
Private Sub GridView1_ValidatingEditor(ByVal sender As Object, ByVal e As DevExpress.XtraEditors.Controls.BaseContainerValidateEditorEventArgs)
Dim col As GridColumn = (TryCast(e, EditFormValidateEditorEventArgs)).Column
Dim oldValue As Object = gridView1.GetFocusedRowCellValue(col)
Dim newValue As Object = e.Value
End Sub
반응형
'IT개발 > 개발 일반' 카테고리의 다른 글
StreamJsonRpc.RemoteInvocationException: 인수에 중복된 분석기 인스턴스가 포함되어 있습니다. (0) | 2024.12.07 |
---|---|
Devexpress, 필터에 -2147483647 같은 쓰레기 값이 쓰여질 때 (1) | 2024.11.26 |
pdb 파일로 디버깅하는 법 (0) | 2024.11.25 |
Visual Studio 확장 프로그램 - CodeMaid 사용하여 사용성 높이기 (1) | 2024.11.15 |
MSSQL, Job 스케줄러 T-SQL로 생성하기 (1) | 2024.11.15 |
댓글