Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxGridFilterRowOptions.ApplyChanges Property

Specifies how filtering is applied to a View when a filter row is used.

#Declaration

Delphi
property ApplyChanges: TcxGridFilterRowApplyChangesMode read; write; default fracOnCellExit;

#Property Value

Type Default
TcxGridFilterRowApplyChangesMode fracOnCellExit

#Remarks

Options include:

Value Meaning
fracOnCellExit The filter row’s in-place editors introduce an auto-complete feature. When an end-user starts entering values, the in-place editor automatically completes the entry based on values contained in the column. Pressing the Enter key updates the View with the filtered data.
fracImmediately The View is updated with the filtered data each time the end-user enters a character within the in-place editor.
fracDelayed The View is updated with the filtered data after a delay specified by ApplyInputDelay property, allowing an end-user to make a more complete entry within the in-place editor. This improves filtering performance when handling large datasets (relative to the mode when filtering is applied immediately – the ApplyChanges property is fracImmediately).

The default value of the ApplyChanges property is fracOnCellExit.

See Also