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

I want to hide Horizontal Scrollbar

3 Answers 569 Views
Window
This is a migrated thread and some comments may be shown as answers.
Gourangi
Top achievements
Rank 1
Gourangi asked on 24 Sep 2008, 07:12 AM
hi,

I want to hide Horizontal Scrollbar when my window is opened.

I have set some stylesheet properties in body tag like style="overflow-x: hidden; " but still my window is showing horizontal scrollbar !

I have noticed that when vertical scroll bar is getting visible then only my horizontal scroll bar is displayed. I dont want to show horizontal scrollbar. And even my horizontal things are not getting overflow !

Please provide me the solution for this.

Thanks

3 Answers, 1 is accepted

Sort by
0
Svetlina Anati
Telerik team
answered on 26 Sep 2008, 03:09 PM
Hi Divyesh,

Would you please replace the RadWindow with a standard IFRAME element and check whether the problem persists? In case it does, apply the needed settings to remove it and after that apply the same logic to the RadWindow.

In case the problem is not present with the IFRAME which is configured as the RadWindow, please open a new support ticket and send me both pages and I will make the one which contains the RadWindow look as the one with the IFRAME.




Regards,
Svetlina
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Bing Yang
Top achievements
Rank 1
answered on 06 Apr 2010, 08:57 PM
Did you remove scroll bar in radwindow? If so, please let me know how to imlement it?

Bing
0
Shinu
Top achievements
Rank 2
answered on 07 Apr 2010, 03:36 PM

Hi Bing,

You can set the AutoSize property of the RadWindow to True in order to autosizing the radwindow according to content, which will inturn hides the scrollbars.

Adding the following style in the page that is loaded in RadWindow will hide the scrollbars.

CSS:

 
<style type="text/css">   
    HTML   
    {   
        overflow-x: hidden;   
    }   
</style>  

-Shinu

Tags
Window
Asked by
Gourangi
Top achievements
Rank 1
Answers by
Svetlina Anati
Telerik team
Bing Yang
Top achievements
Rank 1
Shinu
Top achievements
Rank 2
Share this question
or