ai.aiAssistant.messages.rateNegativeString
(default: "")
The text of the negative rating 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: {
messages: {
rateNegative: "Poor"
}
}
}
});
</script>
In this article