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();
}
Hi Mike,
You can try setting `max-width: none` along with your defined width. The newer Kendo styles may be applying a max-width that prevents the tooltip from honoring the size you configured. Basketball Bros
I tried it this way and that did not work.
<kendo-tooltip name="ReconcileTooltip" filter="span" position="right" height="550" width="850" content-url="@Url.Action("LoadReconcileCounts", "Home", new { componentUnitCode, id = Model.BenefitYearCode })" on-show="RefreshReconcileCounts" style="max-width:none;"></kendo-tooltip>Hi Mike,
Could you please let me know what the result is when using the workaround suggested in my previous reply? Does the issue still occur:
contentLoad: function (e) { $(".k-tooltip.k-popup").width(500).height(500); },Looking forward to your reply.
Regards,
Neli
Hi Mike,
The fix for the Tooltip with remote content does not respect the width and height sizes has now a milestone set. It will be available with the next 2026 Q4 release as marked in the Feedback Portal item:
- https://feedback.telerik.com/aspnet-core-ui/1717587-tooltip-with-remote-content-does-not-respect-the-width-and-height-size
Let me know if you have any adittional questions.
Regards,
Neli