New to Telerik UI for ASP.NET MVCStart a free 30-day trial

PromptBox Events

Updated on Feb 11, 2026

The PromptBox component emits various events that let you handle user interactions and customize the behavior.

This article provides an overview of all available events of the PromptBox.

Razor
    @(Html.Kendo().PromptBox()
        .Name("promptBox")
        .Events(e => e
            .InputValueChange("onInputValueChange")
            .Focus("onFocus")
            .Blur("onBlur")
        )
    )

    <script>
        function onInputValueChange(e) {
            console.log("Content changed");
        }
        function onFocus(e) {
            console.log("Focused");
        }
        function onBlur(e) {
            console.log("Blurred");
        }
    </script>

You can subscribe to the events by the handler name.

javascript
    var promptbox = $("#promptBox").data("kendoPromptBox");
    promptbox.bind("inputValueChange", function(e) {
        console.log("Content changed");
    });

See Also

In this article
See Also
Not finding the help you need?
Contact Support