Hello,
I have both jQuery Tools Module and the Scrollable Views Module installed on a fresh, up-to-date D6 install.
I know that Scrollable works because when I go to Admin --> Help --> jQuery Tools and click on "Scrollable" I see a functioning scroller.
In my View, I have selected "Scrollable views" under "Style" and have made the necessary adjustments to the fields there.
However, though I have multiple images in my view, the images do not scroll when clicked. The nav gadgets have no effect either.
Based on reading other posts, I have a feeling that I need to add an include in my page.tpl.php file to get this to work, and have tried adding this:
<?php jquerytools_add('scrollable'); ?>
...but to no effect.
As there is no documentation whatsoever with this module, I am pretty much stuck. Any help would be appreciated.
B-Dot
Comments
Comment #1
JmsCrk commentedHi B-Dot
I'm not an expert either but I just got scrollable views working and I didn't have to install jquery_tools separately. The scrollable module includes the required jquery libraries itself.
Maybe something is conflicting with the jquery tools module? You coud try disabling it and removing the
jquerytools_add('scrollable');line from your tpl file, see if that helps.Comment #2
B-Dot commentedHi James,
Thanks very much for the tip. In fact, the solution to my problem was much simpler: on the Views screen, I needed to have "Items to Display" set to "Unlimited".
B-Dot