ItemFilterClick: function (sender, args)
sender. Event source.
args. Event information.
The ItemFilterClick event occurs on pressing the Filter button.
The ItemFilterClick occurs on pressing the Filter button for any item. Event of clicking the Filter button for a specific element: BreadcrumbItem.FilterClick.
To execute the example, create the Breadcrumb component with a collection of children. Add a handler for the ItemFilterClick event:
bread.ItemFilterClick.add(function (sender, args) {
bread.setIsRTL(true);
});
After executing the example, clicking the button of any of the Breadcrumb component items positions the component items from right to left.
See also: