outputActions.typeString
Specifies the type of the action. Available options: "button"
, "spacer"
. Default is "button"
.
Example
<div id="aiprompt"></div>
<script>
$("#aiprompt").kendoAIPrompt({
outputActions: [
{ command: "export", text: "Export" },
{ type: "spacer" },
{ command: "delete", text: "Delete", themeColor: "error" }
]
});
</script>
In this article