Grid hide/disable page number tool tip.

1 Answer 64 Views
Grid Pager ToolTip
Jorre
Top achievements
Rank 1
Jorre asked on 27 Jul 2023, 12:43 PM | edited on 27 Jul 2023, 12:43 PM

I'm trying to hide/disable the tooltip when you hover over a page number in pagination toolbar in the kendo grid:

Image

I've spend several hours reading the documentation and forums, awnsers are either outdated or do not seem to work.

How do I hide this tooltip/popup?

Regards,
Jorre Vedder

1 Answer, 1 is accepted

Sort by
0
Neli
Telerik team
answered on 01 Aug 2023, 09:09 AM

Hello Jorre,

I am afraid that the provided image is not available. However, as far as I understand you need to avoid displaying tooltip when hovering the page numbers in the Grid pager. Please note, that when page numbers are hovered standard tooltip (not the kendo tooltip) is displayed based on the title attribute. Thus, you can remove the title attribute from the needed elements:

  dataBound: function(){
              setTimeout(function(){
                $('.k-pager-numbers-wrap .k-button').removeAttr('title');
              })              
     },

Here is a Dojo example.

I hope this helps.

Regards,
Neli
Progress Telerik

Stay tuned by visiting our public roadmap and feedback portal pages! Or perhaps, if you are new to our Kendo family, check out our getting started resources
Tags
Grid Pager ToolTip
Asked by
Jorre
Top achievements
Rank 1
Answers by
Neli
Telerik team
Share this question
or