Breadcrumb.ItemFilterClick

Syntax

ItemFilterClick: function (sender, args)

Parameters

sender. Event source.

args. Event information.

Description

The ItemFilterClick event occurs on pressing the Filter button.

Comments

The ItemFilterClick occurs on pressing the Filter button for any item. Event of clicking the Filter button for a specific element: BreadcrumbItem.FilterClick.

Example

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:

Breadcrumb