editable Boolean (default: false)

Indicates whether the editing functionality of the Breadcrumb will be enabled/disabled.

If the option is enabled the path will be editable. Clicking in an empty area of the component will trigger editing mode. Editing mode shows an input showing the value of the component enabling the end user to type a new path.

Example

<nav id="breadcrumb"></nav>

<script>
    $("#breadcrumb").kendoBreadcrumb({
        editable: true,
        value: 'Telerik UI/Navigation/Breadcrumb'
    });
</script>
In this article