DynamicFilter::FilterChanged Event

.NET Framework (current version)
 

Occurs when the user select a value for the foreign key.

Namespace:   System.Web.DynamicData
Assembly:  System.Web.DynamicData (in System.Web.DynamicData.dll)

public:
event EventHandler^ FilterChanged {
	void add(EventHandler^ value);
	void remove(EventHandler^ value);
}

The FilterChanged event is raised when the user selects a foreign-key value and before the new value is rendered. This enables you to provide an event-handling method that can perform custom operations, such as custom paging.

The following example shows how to handle a filter-changed event. The handler resets the page index before the filtered rows are displayed.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 4.0
Return to top
Show: