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