ai.aiAssistant.showOutputSubtitleTooltipBoolean(default: false)

Controls whether the subtitle of the card in the output view displays a tooltip containing the full content of the subtitle.

Example - enable output subtitle tooltip

<div id="grid"></div>
<script>
$("#grid").kendoGrid({
   columns: [{ field: "name" }],
   dataSource: [{ name: "Jane Doe" }],
   toolbar: ["aiAssistant"],
   ai: {
     aiAssistant: {
       showOutputSubtitleTooltip: true
     },
     service: "https://demos.telerik.com/service/v2/ai/grid/smart-state"
   }
});
</script>