aiObject
Defines the configuration options for the AI tools in the Grid.
Example - enable AI Assistant with basic configuration
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
columns: [
{ field: "name" },
{ field: "age" },
{ command: "destroy" }
],
dataSource: [
{ name: "Jane Doe", age: 30 },
{ name: "John Doe", age: 33 }
],
toolbar: ["aiAssistant"],
filterable: true,
columnMenu: {
componentType: "modern"
},
ai: {
service: "https://demos.telerik.com/service/v2/ai/grid/smart-state"
},
height: 550
});
</script>
In this article