[Solved] Tooltip - not responding to defined size

0 Answers 3 Views
ToolTip
Mike
Top achievements
Rank 1
Iron
Iron
Iron
Mike asked on 03 Aug 2026, 04:10 PM | edited on 03 Aug 2026, 04:26 PM

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>&nbsp;</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();
}

No answers yet. Maybe you can help?

Tags
ToolTip
Asked by
Mike
Top achievements
Rank 1
Iron
Iron
Iron
Share this question
or