outputActions.roundedString
Specifies the border radius of the action button. Available options: "small"
, "medium"
, "large"
, "full"
, "none"
.
Example
<div id="aiprompt"></div>
<script>
$("#aiprompt").kendoAIPrompt({
outputActions: [
{ command: "rounded", text: "Rounded", rounded: "full" }
]
});
</script>
In this article