showOutputSubtitleTooltipBoolean
(default: false)
Controls whether the subtitle of the card in the output view displays a tooltip containing the full content of the subtitle, which is the prompt used to generate the output.
Example
<div id="aiprompt"></div>
<script>
$("#aiprompt").kendoAIPrompt({
activeView: 1,
showOutputSubtitleTooltip: true,
promptOutputs: [
{ prompt: "A very long subtitle that will be shown in a tooltip", output: "Description 1" },
{ prompt: "Another long subtitle for tooltip demonstration", output: "Description 2" }
]
});
</script>
In this article