Version

AfterRowFilterDropDownPopulate Event

Occurs after the row filter drop down is populated.
Syntax
'Declaration
 
Public Event AfterRowFilterDropDownPopulate As AfterRowFilterDropDownPopulateEventHandler
public event AfterRowFilterDropDownPopulateEventHandler AfterRowFilterDropDownPopulate
Event Data

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

PropertyDescription
Column Column associated with the column flter drop down.
Rows If UltraGridOverride.RowFilterMode resolves to SiblingRowsOnly, then the RowsCollection associated with the column will be passed in. Otherwise it will be null.
ValueList The value list that will be used as the filter drop down. You can add, remove, or modify item on the list.
Remarks

You can use the AfterRowFilterDropDownPopulate event to modify the contents of the filter value list. If you want to prevent the list from being populated, use the BeforeRowFilterDropDownPopulate event.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, 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