up vote 0 down vote favorite
1
share [g+] share [fb]

I am just a designer and don't know javascript well enough to figure out how to print a full content of a JScrollPane, not a visible part of it. I would very much appreciate any help with the issue. Thanks!

link|improve this question
feedback

3 Answers

I'd suggest creating a print-stylesheet that contains following rules:

div.jScrollPaneContainer {
   position: static !important;
   height: auto !important;
   overflow: visible !important;
}

div.jScrollPaneContainer > * {
   display: none !important;
}

div.scroll-pane {
   position: static !important;
   display: block !important;
   float: none !important;
}

all selectors used in the code above correspond to HTML structure of jScrollPane basic example

link|improve this answer
Rafael, Perfect. It works. Thank you so much! Best, Irina – Irina May 1 '10 at 6:05
You're welcome. I'm glad I could help. – Rafael May 1 '10 at 10:26
feedback

Or put the entire scrollpane stylesheet inside a @media print { //scrollpane css goess here. }

link|improve this answer
feedback

Didn't work for me with jScrollPane - v2.0.0beta11 - 2011-07-04. Taking a quick look at the generated source code shows that the div class names have changed. Here is what I put in my print.css:

div.booksummary,  div.booksummary > div {position:static !important;height: auto !important;overflow: visible !important;}

where the jQuery code is:

$('.booksummary').jScrollPane();

Another thought : Putting CSS properties in @media print {} only works if the CSS file in question is loaded, which won't happen if the CSS file is associated to the 'screen' media.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.