Version

ResolvingData Event

Event raised when paging, filtering, sorting, or groupby actions are changed.
Syntax
'Declaration
 
Public Event ResolvingData As EventHandler(Of DataAcquisitionEventArgs)
public event EventHandler<DataAcquisitionEventArgs> ResolvingData
Event Data

The event handler receives an argument of type DataAcquisitionEventArgs containing data related to this event. The following DataAcquisitionEventArgs properties provide information specific to this event.

PropertyDescription
CurrentPage Gets the current page index
CurrentSort Gets a collection SortContext which will be applied.
DataSource Gets / sets the IList that will be applied to the data manager.
EnablePaging Gets if the DataManager expects paged data.
Filters Gets a collection that lists what filters will be applied.
GroupByContext Gets the GroupBy that will be applied to the data.
Handled (Inherited from Infragistics.HandleableEventArgs)Gets / sets if the event is to be considered handled.
PageSize Gets the maximum number of rows expected by the DataManager.
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