New to Kendo UI for jQuery? Start 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.
javascript
$("#promptbox").kendoPromptBox({
valueChange: function(e) {
console.log("Content changed");
},
focus: function(e) {
console.log("Focused");
},
blur: function(e) {
console.log("Blurred");
}
// Add other event handlers here
});
You can subscribe to the events by the handler name.
javascript
var promptbox = $("#promptbox").data("kendoPromptBox");
promptbox.bind("valueChange", function(e) {
console.log("Content changed");
});