Version

OnEditModeValidationError Method (DataPresenterBase)

Occurs when the ActiveCell has an input validation error
Syntax
'Declaration
 
Protected Overridable Sub OnEditModeValidationError( _
   ByVal args As EditModeValidationErrorEventArgs _
) 
protected virtual void OnEditModeValidationError( 
   EditModeValidationErrorEventArgs args
)

Parameters

args
Remarks

This event is raised when the user attempts to end the edit mode on ActiveCell after entering an invalid value. The default behavior is to display an error message and not end the edit mode on the cell. You can change this default behavior by setting the FieldSettings.InvalidValueBehavior property on FieldSettings or by hooking into this event and setting various properties on the associated event args to control the behavior, including what to display in the error message.

Note: To end edit mode you can call the ActiveCell's Cell.EndEditMode method, change the ActiveCell, change the ActiveRecord or call ExecuteCommand(RoutedCommand) with either the DataPresenterCommands' DataPresenterCommands.EndEditModeAndAcceptChanges or DataPresenterCommands.EndEditModeAndDiscardChanges commands.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also