Hi,
I know there's alot of post about setting the height of the reportviewer in a page. But i'm still having a problem.
First thing all my report are showing in a radwindow with a radtoolbar on top of it.
I've set all the parent of my reportviewer with height 100%. But there's still an overflow at bottom of the window that is the exact same height of the toolbar container.
Here is my code
and my css :
FortressReportViewer is the class i applied directly on my reportviewer.
I've also tried switching doctype but it doesn't change any thing saddly. My reportviewer is still going below my radwindow borders.
Thx for your help,
Guillaume
I know there's alot of post about setting the height of the reportviewer in a page. But i'm still having a problem.
First thing all my report are showing in a radwindow with a radtoolbar on top of it.
I've set all the parent of my reportviewer with height 100%. But there's still an overflow at bottom of the window that is the exact same height of the toolbar container.
Here is my code
<body> |
<form id="form1" runat="server"> |
<telerik:RadScriptManager ID="RadScriptManager1" runat="server"> |
</telerik:RadScriptManager> |
<div id="TitleSection"> |
<fortress:PopupWindowToolbar ID="PopupWindowToolbar1" runat="server"></fortress:PopupWindowToolbar> |
</div> |
<div id="PageSection"> |
<div id="ContentSection"> |
<div id="ContentSectionContainer"> |
<asp:ContentPlaceHolder ID="ContentPlaceHolderPopup" runat="server" > |
</asp:ContentPlaceHolder> |
</div> |
</div> |
</div> |
</form> |
</body> |
html, body, form |
{ |
height:100%; |
} |
html |
{ |
overflow:hidden; |
} |
#TitleSection |
{ |
position: static; |
top:0px; |
width:100%; |
text-align: left; |
vertical-align: middle; |
background: #b6cef1 url(Header/GradiantEntete.png) repeat-x scroll bottombottom left; |
} |
#ContentSection |
{ |
position:relative; |
top:0px; |
left:0px; |
width:100%; |
height:100%; |
} |
.FortressReportViewer |
{ |
position:absolute; |
top:0px; |
left:0px; |
rightright:0px; |
bottombottom:0px; |
height:100% !important; |
width:100% !important; |
} |
FortressReportViewer is the class i applied directly on my reportviewer.
I've also tried switching doctype but it doesn't change any thing saddly. My reportviewer is still going below my radwindow borders.
Thx for your help,
Guillaume