swooningfish / jscrollpane

Automatically exported from code.google.com/p/jscrollpane
0 stars 0 forks source link

It doesn't work on IE #152

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
I changed the code a little bit, to fit my layout, in example, i need the
drag panel to be in front of a picture, i solved that using CSS, but i
changed the code so that panel is printed outside the "jScrollPaneContainer".

So i need to manually input "jScrollPaneContainer" and that breaks IE.
Is there any work around? You can see the problem at www.lemadorigem.pt

Original issue reported on code.google.com by joaolope...@gmail.com on 23 Nov 2009 at 2:40

GoogleCodeExporter commented 9 years ago
You are not meant to add jScrollPaneContainer yourself, the script adds it. You 
could
nest your elements in another div so that the external div has the CSS on it 
and the
element that you apply jScrollPane to sits inside this div (so the jScrollPane
container will be introduced between these two elements.

Alternatively you can tweak the conditional:

if ($(this).parent().is('.jScrollPaneContainer')) {

And make sure that it does some of the initialisation stuff from the other 
path...
But I'm not sure if this will introduce other bugs... I will look into a more 
robust
solution in a future release of jScrollPane but I think that your best bet for 
now is
my suggestion above...

Original comment by kelvin.l...@gmail.com on 23 Nov 2009 at 2:53

GoogleCodeExporter commented 9 years ago
I have just announced the beta of a completely rewritten version of jScrollPane:

http://groups.google.com/group/jscrollpane/browse_thread/thread/c1bc1bf63e3f80d8

Please test and reply on the list if you are still having this issue,

Thanks,

Kelvin

Original comment by kelvin.l...@gmail.com on 17 Aug 2010 at 4:14