I am on the build 2026.2.520 and saw the following issue was determined as fixed in this release.
https://github.com/telerik/kendo-ui-core/issues/8434
I have the following tooltip that no longer is responding to the defined size I have set. This was previously working without issue.
<div class="mt-1">
<span id="ReconcileTooltip"><span class="badge bg-secondary"><span class="fa-solid fa-magnifying-glass"></span> View Results</span></span>
<kendo-tooltip name="ReconcileTooltip" filter="span" position="right" height="550" width="850" content-url="@Url.Action("LoadReconcileCounts", "Home")" on-show="RefreshReconcileCounts"></kendo-tooltip>
</div>
Here is the code for the partial view that is loaded for content:
<div>
<table class="table table-bordered" summary="Show reconcilation percentages by product, match types">
<thead class="table-primary">
<tr>
<td> </td>
<th colspan="4" scope="colgroup" align="justify">@Localizer["ResultTable_Header"].Value</th>
</tr>
<tr>
<th scope="col">@Localizer["ResultTable_Category"].Value</th>
<th scope="col">@Localizer["ResultTable_EnrollmentDeduction"].Value</th>
<th scope="col">@Localizer["ResultTable_EnrollmentContribution"].Value</th>
<th scope="col">@Localizer["ResultTable_EnrollmentInvoice"].Value</th>
<th scope="col">@Localizer["ResultTable_PayrollInvoice"].Value</th>
</tr>
</thead>
<tbody>
...
</tbody>
</table>
</div>And the javascript for the refresh:
function RefreshReconcileCounts() {
this.refresh();
}