ai.aiAssistantWindow.content.urlString
Specifies the url from which the content is fetched
Example - fetching JSON and displaying it through a template
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
columns: [{ field: "name" }],
dataSource: [{ name: "Jane Doe" }],
toolbar: ["aiAssistant"],
ai: {
aiAssistantWindow: {
content: {
url: "../content/web/tabstrip/ajax/ajaxContent2.html",
}
}
}
});
</script>
In this article