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

[Solved] VirtualPaging Scrollbar Tooltip

4 Answers 114 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Dan
Top achievements
Rank 1
Dan asked on 18 Apr 2008, 03:43 PM
Is it possible to suppress or relocate the tooltip that appears when you drag the vertical scrollbar when you have VirtualPaging enabled?

I ask 'cos I have a grid that displays in a RadWindow as a popup. The Grid fills 100% of the Window. If I drag the vertical scrollbar towards the bottom of the window, the tooltip overlaps the edge of the window and causes the system to display additional scrollbars on the window container.

--
Stuart

4 Answers, 1 is accepted

Sort by
0
Accepted
Dimo
Telerik team
answered on 21 Apr 2008, 06:47 AM
Hi Stuart,

The virtual scrolling tooltip is an absolutely positioned span element. It does not have a CSS class, but has an ID. You can override its javascript-calculated top and left styles by adding a CSS rule containing the !important keyword. Since you are using a 100% wide RadGrid inside RadWindow (and I suppose users can resize the window), it will be wiser to use right style instead of left :

#RadGrid1ScrollerToolTip
{
    left: auto !important;
    right: 10px !important;
}

As you see, the "RadGrid1" part of the tooltip's ID depends on the RadGrid's ID.

Kind regards,
Dimo
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
Dan
Top achievements
Rank 1
answered on 22 Apr 2008, 08:43 AM
Nice one Dimo; I've been able to tie the tooltip to the one position.

As a suggestion, it would be good if this element has a class of its own so that it could be controlled from within the .CSS file of the skin.

--
Stuart
0
Dimo
Telerik team
answered on 22 Apr 2008, 08:57 AM
Hello Stuart,

Sure, we'll do it.

Best wishes,
Dimo
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
Dan
Top achievements
Rank 1
answered on 22 Apr 2008, 09:44 AM
Cool.

Cheers, Dimo.

--
Stuart
Tags
Grid
Asked by
Dan
Top achievements
Rank 1
Answers by
Dimo
Telerik team
Dan
Top achievements
Rank 1
Share this question
or