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

Style Scroll bar in Multipage

3 Answers 30 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Thomas Maxwell
Top achievements
Rank 1
Thomas Maxwell asked on 15 Oct 2010, 05:34 PM
Hi,

I cannot seem to get this, I have a multipage with a label in it that dynamically populates a list, I have set scroll to auto, but no matter what I have tried I cannot seem to style the scroll bar, the design has a custom looking scroll bar so I need to make the scroll bar look as close to that as possible. Is there a way to style the scroll bar in this control?

3 Answers, 1 is accepted

Sort by
0
Yana
Telerik team
answered on 21 Oct 2010, 02:19 PM
Hi Thomas Maxwell,

You can use the following approach:

<telerik:RadMultiPage ID="RadMultiPage1" runat="server" SelectedIndex="0">
       <telerik:RadPageView ID="PageView1" runat="server" Width="500px" Height="100px" CssClass="pageViewScroll">
      
       </telerik:RadPageView>
</telerik:RadMultiPage>

and here is the "pageViewScroll" css class:

<style type="text/css">
    .pageViewScroll
    {
        overflow: auto;
        scrollbar-arrow-color:#ff0;
        scrollbar-base-color:#ff6347;
    }
</style>


Regards,
Yana
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
0
Thomas Maxwell
Top achievements
Rank 1
answered on 21 Oct 2010, 09:30 PM
Thanks for the answer, is there a way to use images for the arrows and thumb?
0
Yana
Telerik team
answered on 22 Oct 2010, 07:41 AM
Hi Thomas Maxwell,

There are various articles on the Internet about styling a scrollbar, for example here and here.

Best wishes,
Yana
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
General Discussions
Asked by
Thomas Maxwell
Top achievements
Rank 1
Answers by
Yana
Telerik team
Thomas Maxwell
Top achievements
Rank 1
Share this question
or