ai.autoCloseBoolean(default: true)

Configures if the AI Assistant Window should remain visible after the response.

Example - configure AI service output getter

<div id="grid"></div>
<script>
$("#grid").kendoGrid({
   columns: [{ field: "name" }],
   dataSource: [{ name: "Jane Doe" }],
   toolbar: ["aiAssistant"],
   ai: {
     autoClose: false,
     service: {
       url: "https://demos.telerik.com/service/v2/ai/grid/smart-state",
       outputGetter: function(response) {
         return response.messages.join("---");
       }
     }
   }
});
</script>
In this article
ai.autoClose
Not finding the help you need?
Contact Support