outputAction
This event will be fired with the button options that will be received, after the command has finished. Currently, these would be the Copy
, Retry
, and Discard
options.
Example
<div id="inlineaiprompt"></div>
<script>
$("#inlineaiprompt").kendoInlineAIPrompt({
outputAction: function(e) {
console.log("Output action executed:", e.action);
}
});
</script>
In this article