TcxGridFilterRowOptions.ApplyChanges Property
Specifies how filtering is applied to a View when a filter row is used.
Declaration
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