valueChange
Fires when the value changes through user input (not programmatic changes).
Event Data
e.oldValue String
The previous value of the input field before the change.
e.newValue String
The new value of the input field after the change.
Example
<div id="promptbox"></div>
<script>
$("#promptbox").kendoPromptBox({
placeholder: "Type something...",
valueChange: function(e) {
console.log("Value changed from:", e.oldValue, "to:", e.newValue);
}
});
</script>