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

Rad dock Horizontal bar only

1 Answer 43 Views
Dock
This is a migrated thread and some comments may be shown as answers.
Moustafa
Top achievements
Rank 1
Moustafa asked on 09 May 2009, 07:23 AM
Hi team

the rad dock always display both the horizontal and vertical one when the content larger than the specified dock size.

I would like to show only  rad dock vertical  bar,

or how can I control the visibility of the vertical and horizontal bar?

Tools:

  • rad controls for asp.net ajax 2008-Q3.
  • asp.net 3.5
  • windows vista - server 2008
  • IE version 7

thanks in advance

1 Answer, 1 is accepted

Sort by
0
Obi-Wan Kenobi
Top achievements
Rank 1
answered on 11 May 2009, 11:23 AM
The RadDock's content div css class is .rdContent. If you want to see only vertical scroll you should set  overflow-x: hidden !important;

 

overflow-y: scroll !important; e.g.

<style type="text/css">  
        .rdContent  
        {  
            overflow-x: hidden !important;  
            overflow-y: scroll !important;  
        }  
    </style> 
Tags
Dock
Asked by
Moustafa
Top achievements
Rank 1
Answers by
Obi-Wan Kenobi
Top achievements
Rank 1
Share this question
or