outputActions.commandString
The command identifier for the action. This is used to identify the action when the outputAction
event is triggered.
Example
<div id="inlineaiprompt"></div>
<script>
$("#inlineaiprompt").kendoInlineAIPrompt({
outputActions: [
{ command: "export", text: "Export", icon: "download" }
]
});
</script>
In this article