This is a migrated thread and some comments may be shown as answers.

RadGridView - Remove Position: tooltip

6 Answers 229 Views
GridView
This is a migrated thread and some comments may be shown as answers.
muralitharan
Top achievements
Rank 1
muralitharan asked on 10 Nov 2009, 09:38 AM
Hi,

When we are assigning the theme (xml file)  for radgridview, we are getting the tooltip like Position:1.. (while scroling the vertical scroll). I need to remove this tool tip. So kindly let me know how to remove this tooltip. [Kindly refer the attached jpeg file]

6 Answers, 1 is accepted

Sort by
0
Jack
Telerik team
answered on 11 Nov 2009, 03:17 PM
Hello Muralitharan,

This tooltip is active only when EnableFastScrolling option is set to true. Set the property to false to disable the tooltip. If you need further assistance, don't hesitate to write us back.

Also, I see that your subscription has lapsed, I you would advise you to renew it for faster response times and free major version upgrades of course :)

All the best,
Jack
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
[Nean]
Top achievements
Rank 1
answered on 17 Nov 2009, 03:15 PM
Hi Jack,

Is it possible to indicate another information than the position in this ToolTip ? For example I have a date on each row, can I put the date of the row instead of the position ?

Thanks,

[Nean]

0
Jack
Telerik team
answered on 18 Nov 2009, 05:13 PM
Hi [Nean],

Currently it is not possible to customize the scroll position tooltip. We will add such API in our upcoming service pack. Should you have any questions, don't hesitate to ask.

Regards,
Jack
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
Adrian Dinu
Top achievements
Rank 1
answered on 23 Feb 2010, 11:59 AM
You can subscribe to ToolTipTextNeeded event and in the event handler to change the tooltip:
 if (null != e.ToolTipText && e.ToolTipText.StartsWith("Position"))  
 {  
     e.ToolTipText = "Record: " + e.ToolTipText.Substring("Position:".Length);  
 } 
0
munna munna
Top achievements
Rank 1
answered on 15 Mar 2010, 07:51 AM
But For WPF telerik rad gridview Enablefastscrolling property is not there. so what i need to do here.
please give  reply.
0
Hristo
Telerik team
answered on 15 Mar 2010, 06:56 PM
Hello Munna,

For RadGridView for WPF the property you need is called ScrollMode. You can find more details in this online example.

Kind regards,
Hristo
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
Tags
GridView
Asked by
muralitharan
Top achievements
Rank 1
Answers by
Jack
Telerik team
[Nean]
Top achievements
Rank 1
Adrian Dinu
Top achievements
Rank 1
munna munna
Top achievements
Rank 1
Hristo
Telerik team
Share this question
or