FilterClick: function (sender, args)
sender. Event source.
args. Event information.
The FilterClick event occurs on pressing the Filter button.
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.
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: