Hello, I'm trying to prevent chat posting, I mean when user click send button (or type keybord enter) I want in some cases to prevent the post of the message.
Something like this is not working (the message is posted in chat)
$("#chat").kendoChat({
post: function(e) {
e.preventDefault();
}
});
Is that a bug? Or there is a different approach to accomplish this task?
Thanks,
Mattia