input
Fires each time the user types in the input field.
Event Data
e.value String
The current value of the input field.
Example
<div id="promptbox"></div>
<div id="char-count">0 characters</div>
<script>
$("#promptbox").kendoPromptBox({
placeholder: "Type to see character count...",
input: function(e) {
$("#char-count").text(e.value.length + " characters");
}
});
</script>