Skip to main content

TcxCustomDataController.OnFindCriteriaChanged Event

Enables you to identify and track all data search criteria changes applied to the data controller.

Declaration

property OnFindCriteriaChanged: TcxDataFindCriteriaChangedEvent read; write;

Remarks

This event occurs every time the data controller rearranges data according to the applied data search criteria, after at least one OnFindCriteriaBeforeChange event occurrence. If the data controller contains a large number of data rows, the time interval between the OnFindCriteriaBeforeChange and OnFindCriteriaChanged events can be noticeable. You can handle both events to track the time required to perform a search operation and the changes applied to the active data search criteria.

Refer to the TcxDataFindCriteriaChangedEvent procedural type description for detailed information on parameters accessible within an OnFindCriteriaChanged event handler.

Note

If the data controller is locked by a BeginUpdate call, all search criteria changes do not take effect until an EndUpdate call that raises the OnFindCriteriaChanged event.

See Also