ai.aiAssistant.toolbarItems.fillModeString
The fill mode of the toolbar item. Available options: "solid"
, "outline"
, "flat"
, "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: {
toolbarItems: [
{
type: "button",
text: "Action",
fillMode: "outline"
}
]
}
}
});
</script>
In this article