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!
+1
A:
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
Rafael
2010-04-03 11:59:12
Rafael,Perfect. It works. Thank you so much!Best,Irina
Irina
2010-05-01 06:05:35
You're welcome. I'm glad I could help.
Rafael
2010-05-01 10:26:10
A:
Or put the entire scrollpane stylesheet inside a @media print { //scrollpane css goess here. }
Bo Petersen
2010-04-24 12:28:17