BreadcrumbItem.FilterClick

Syntax

FilterClick: function (sender, args)

Parameters

sender. Event source.

args. Event information.

Description

The FilterClick event occurs on pressing the Filter button.

Comments

The FilterClick event is fired on clicking filter button of a specific element. The event that occurs on pressing the Filter button for any of the items is called Breadcrumb.ItemFilterClick.

Example

To execute the example, create the Breadcrumb component with a collection of children. Add the FilterClick event handler:

        var item = bread.getItems().getItem(0);

        item.FilterClick.add(function (sender, args) {

            item._FilterButton.dispose();

        });

After executing the example, pressing the button of the first item in the collection deletes this button.

See also:

BreadcrumbItem