Skip to main content
A newer version of this page is available. .

RepositoryItem.EditValueChanged Event

Fires immediately after changing the edit value.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v18.1.dll

Declaration

[DXCategory("Events")]
public event EventHandler EditValueChanged

Event Data

The EditValueChanged event's data class is EventArgs.

Remarks

The edit value is specified by the BaseEdit.EditValue property. Each time this property value changes, the EditValueChanged event is raised. Note: the edit value is changed during editing. For instance, typing characters within the editor will raise the EditValueChanged event each time a character has been typed.

The EditValueChanged event is used for notification only, and should not be used to cancel changes. To restrict user input, handle the RepositoryItem.EditValueChanging event instead.

The RepositoryItem.EditValueChangedFiringMode property specifies how the EditValueChanged event fires - immediately, or after an end-user has stopped editing. See this topic for more details.

Note

The RepositoryItem.EditValueChangedFiringMode property is ignored for lookup editors during an incremental search while their popup windows are open. If the editor’s edit value is changed during an incremental search, the RepositoryItem.EditValueChanged event fires immediately.

The following code snippets (auto-collected from DevExpress Examples) contain references to the EditValueChanged event.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also