ai.aiAssistant.outputActions.titleString
Specifies the title attribute (tooltip) for the action button.
Example
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
columns: [
{ field: "productName" },
{ field: "category" }
],
dataSource: [
{ productName: "Tea", category: "Beverages" },
{ productName: "Coffee", category: "Beverages" }
],
ai: {
aiAssistant: {
outputActions: [
{
command: "help",
text: "Help",
title: "Get help about this output"
}
]
}
}
});
</script>
In this article