Scrolling Panel Printing Issue

Posted by Paul on Stack Overflow See other posts from Stack Overflow or by Paul
Published on 2010-04-16T14:26:28Z Indexed on 2010/04/19 14:53 UTC
Read the original article Hit count: 166

Filed under:
|
|
|

Hi

I have a site where we have the content in scrolling panels to make it neater and line up. The issue comes when trying to print the contents of my panel hidden by the scroll.

Here is my panel

<asp:Panel Height="400px" ID="pnlContent" class="ContentPanel ScrollBars="Vertical" runat="server" > 
<!-- Content bla bla bla -->
</asp:Panel>

Here is my media="print" style sheet code for the ContentPanel

.ContentScroller  
{
    overflow:visible;
}

The overflow:visible does not seem to remover the ScrollBars="Vertical"

Any ideas on how to get this hidden content to print?

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about panel