ai.aiAssistant.outputActions.roundedString
Specifies the border radius of the action button. Available options: "small"
, "medium"
, "large"
, "full"
, "none"
.
Example
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
columns: [
{ field: "productName" },
{ field: "category" }
],
dataSource: [
{ productName: "Tea", category: "Beverages" },
{ productName: "Coffee", category: "Beverages" }
],
ai: {
aiAssistant: {
outputActions: [
{
command: "refresh",
text: "Refresh",
rounded: "large"
}
]
}
}
});
</script>
In this article