input
Fired when the user types in the message input field.
Event Data
e.value String
The current value of the input field.
Example
<div id="chat"></div>
<script>
$("#chat").kendoChat({
input: function(e) {
console.log("User is typing:", e.value);
}
});
</script>
In this article