WIP: Validation per Column in Table

This commit is contained in:
Jonathan Jenne
2019-05-13 17:20:40 +02:00
parent 09b104c4d6
commit c957dd0400
8 changed files with 794 additions and 416 deletions

View File

@@ -4,6 +4,7 @@ Imports DevExpress.XtraEditors
Imports DevExpress.XtraEditors.Controls
Imports DevExpress.XtraEditors.NavigatorButtons
Imports DevExpress.XtraGrid
Imports DevExpress.XtraGrid.Views.Base
Imports DevExpress.XtraGrid.Views.Grid
Imports DigitalData.Controls.LookupGrid
@@ -373,6 +374,10 @@ Public Class ClassControlCreator
oControl.DataSource = oDatatable
AddHandler oView.CellValueChanged, Function(sender As Object, e As CellValueChangedEventArgs)
' TODO: Do the validation
End Function
Return oControl
End Function