New to Telerik UI for ASP.NET Core? Download free 30-day trial

Events

The Telerik UI TabStrip for ASP.NET Core exposes multiple events that allow you to control and customize the behavior of the UI component.

For a complete example on basic TabStrip events, refer to the demo on using the events of the TabStrip.

Handling by Handler Name

The following example demonstrates how to subscribe to events by a handler name.

@(Html.Kendo().TabStrip()
    .Name("tabstrip")
    .Items(tabstrip =>
    {
        tabstrip.Add().Text("Paris")
            .LoadContentFrom(Url.Action("Paris", "Home"));

        tabstrip.Add().Text("Sofia")
            .LoadContentFrom(Url.Action("Sofia", "Home"));
    })
    .Events(events => events
        .Show("onShow")
        .Select("onSelect")
        .Activate("onActivate")
        .ContentLoad("onContentLoad")
        .Error("onError")
    )
)
<kendo-tabstrip name="tabstrip"
                on-show="onShow"
                on-select="onSelect"
                on-activate="onActivate"
                on-content-load="onContentLoad"
                on-error="onError">
    <items>
        <tabstrip-item text="Paris"
                       content-url="@Url.Action("Paris", "Home")">

        </tabstrip-item>
        <tabstrip-item text="Sofia"
                        content-url="@Url.Action("Sofia", "Home")">

        </tabstrip-item>
    </items>
</kendo-tabstrip>

<script type="text/javascript">
    function onShow(e) {
        console.log("Shown: " + $(e.item).find("> .k-link").text());
    }

    function onSelect(e) {
        console.log("Selected: " + $(e.item).find("> .k-link").text());
    }

    function onActivate(e) {
        console.log("Activated: " + $(e.item).find("> .k-link").text());
    }

    function onContentLoad(e) {
        console.log("Content loaded in <b>"+ $(e.item).find("> .k-link").text() + "</b>");
    }

    function onError(e) {
        console.error("Loading failed with " + e.xhr.statusText + " " + e.xhr.status);
    }
</script>

Next Steps

See Also

In this article