ai.aiAssistant.views.nameString
The name of the view. Must be unique.
Example
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
columns: [
{ field: "productName" },
{ field: "category" }
],
dataSource: [
{ productName: "Tea", category: "Beverages" },
{ productName: "Coffee", category: "Beverages" }
],
ai: {
aiAssistant: {
views: [
{
type: "custom",
name: "dataInsights",
buttonText: "Insights"
}
]
}
}
});
</script>
In this article