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.
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, please let me know if you need further assistance with this.
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.
[REMOVED]