outputCopy
Note: This event is deprecated. Use the
outputAction
event instead.
Triggered when the copy output button of an output is clicked. The prompt
and the output
object are available through the event argument.
Example
<div id="aiprompt"></div>
<script>
$("#aiprompt").kendoAIPrompt({
outputCopy: function(e) {
console.log("Output copied:", e.output);
}
});
</script>
In this article