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

Radwindow Scroll

1 Answer 147 Views
Window
This is a migrated thread and some comments may be shown as answers.
Chris Boyce
Top achievements
Rank 1
Chris Boyce asked on 05 Feb 2012, 09:15 PM
Hi.

I have a masterpage where I don't want a content page to scroll. It has the following style:
html, body, form 
{
    height:100%;
    margin:0;
    padding:0;
    overflow: auto
    overflow-x: hidden
    overflow-y: hidden
    font: normal 12px/1.5em "Segoe UI", Arial, sans-serif;
}

My content page then has a radwindow manager within it which opens a popup.   The problem is I need the popup to be able to scroll verically, but because my masterpage has scrolling hidden it doesn't show.  I have tried changing the style in the content page but scrolling does not appear? Any help would be appreciated.

1 Answer, 1 is accepted

Sort by
0
Accepted
Princy
Top achievements
Rank 2
answered on 06 Feb 2012, 05:52 AM
Hello,

You can add CssClass to RadWindow and add style for that as shown.
ASPX:
<telerik:RadWindow ID="RadWindow1" runat="server" CssClass="windowcss">
CSS:
.windowcss
{
  overflow:scroll !important;
}

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