[Solved] Grid Validation Tooltip Styling

2 Answers 40 Views
Grid ToolTip
Danielle
Top achievements
Rank 1
Iron
Iron
Iron
Danielle asked on 13 May 2026, 05:46 PM | edited on 13 May 2026, 06:16 PM
I have several grids with inline dropdown editors.  The system users are complaining that the validation tooltips block the top options for the dropdown.  Is there a way to specify that their position be placed at the top of the field rather than the bottom.
Austin
Top achievements
Rank 2
Iron
commented on 15 May 2026, 08:03 PM | edited

[REMOVED]

2 Answers, 1 is accepted

Sort by
0
Austin
Top achievements
Rank 2
Iron
answered on 15 May 2026, 08:10 PM

There isn’t a built-in Grid option for validation tooltip placement. It comes from the Kendo Validator.

However, you can override it with grid-scoped CSS:

 

.my-grid .k-tooltip-validation,
.my-grid .k-invalid-msg {
    position: absolute;
    bottom: 100%;
    top: auto;
    left: 0;
    margin-bottom: 4px;
    z-index: 10000;
}

.my-grid .k-tooltip-validation .k-callout,
.my-grid .k-invalid-msg .k-callout {
    display: none;
}

 

Then scope it to the grid:

.HtmlAttributes(new { @class = "my-grid" })
Eyup
Telerik team
commented on 18 May 2026, 12:49 PM

Hi 

Thank you for sharing your approach! The CSS solution provided looks correct for repositioning Kendo UI Grid validation tooltips above the input fields instead of below them.

Danielle
Top achievements
Rank 1
Iron
Iron
Iron
commented on 19 May 2026, 12:31 PM | edited

Austin,

Thank you! That is a great start.  For some reason it didn't translate completely for me.  The messages are appearing above the grid. 

I might have some conflicting rules that are getting in the way so I'll look at it more - but this is a great start. 

If I find hte specific issue I will update the ticket.

0
Viktor Tachev
Telerik team
answered on 22 May 2026, 07:59 AM

Hi Danielle,

Thank you for reaching out to us.

Positioning the validation tooltip above the row can introduce other challenges that would need to be handled. For example, the header of the Grid can hide the tooltip:

 

Because of this, I suggest an alternative approach - show the tooltip below the dropdown popup. For this, you can use the following CSS:

div.k-tooltip-error {
    z-index: 10000;
}

The result will look similar to this:

 

Let me know how the suggested approach works for you.

 

Regards,
Viktor Tachev
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

Tags
Grid ToolTip
Asked by
Danielle
Top achievements
Rank 1
Iron
Iron
Iron
Answers by
Austin
Top achievements
Rank 2
Iron
Viktor Tachev
Telerik team
Share this question
or