speechToTextClick
Fires each time the user clicks the Speech to Text button.
Example
<div id="promptbox"></div>
<script>
$("#promptbox").kendoPromptBox({
speechToTextButton: true,
placeholder: "Click the microphone...",
speechToTextClick: function(e) {
console.log("Speech to text button clicked");
}
});
</script>