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

When scrolling grid, how to suppress "Page 1 out of 1 pages" tooltip?

1 Answer 43 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Tim R
Top achievements
Rank 1
Tim R asked on 23 Mar 2009, 05:28 PM
The grid is in ClientSettings.Scrolling.AllowScroll = True mode.  When the user starts to scroll the contents of the grid, the following tooltip appears and moves up and down as they scroll, causing some confusion and sort of getting in the way:

"Page 1 out of 1 pages"

Could you please tell me how this tooltip can be suppressed?

Thanks

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 24 Mar 2009, 05:59 AM
Hi Tim,

I am able to see the tooltip if the RadGrid1.ClientSettings.Scrolling.EnableVirtualScrollPaging  property is set to true. If this is the case try the following code snippet to supress the ScrollerToolTip.

Style.Css:
 
<head runat="server">  
    <style type="text/css" >  
     #RadGrid1ScrollerToolTip  
     {  
       display:none;  
     }  
    </style>  
</head>  

Cheers
Shinu.


Tags
Grid
Asked by
Tim R
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or