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

RadWindow doesn't show horizontal scrollbar

1 Answer 151 Views
Window
This is a migrated thread and some comments may be shown as answers.
Lorenzo
Top achievements
Rank 1
Lorenzo asked on 19 Sep 2011, 04:30 PM
Hi!

I have a RadWindow that doesn't show horizontal scrollbar (I have a grid with a lot of column and I need to see the scrollbar).
If I set overflow-x: scroll on the html tag I see the horizontal bar but I can't use it because it's disabled.

What can I do?


Thanks in advance!

Francesco Balatti
Zelando

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 20 Sep 2011, 06:21 AM
Hello Lorenzo,

Try the following markup and CSS inorder to implement a horizontal scrollbar.
aspx:
<telerik:RadWindow ID="RadWindow1"  runat="server"  CssClass="window">
CSS:
<style type="text/css">
 .window
  {  
    overflow-x:scroll ;
  }  
</style>

Thanks,
Princy.
Tags
Window
Asked by
Lorenzo
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or