I'm trying to customize the pager with pagerAnchorBuilder. I've looked at http://drupal.org/node/1079960, but I don't have anything working. Can someone provide a simple example demonstrating how to do it with views slideshow?

Thanks.

Comments

colin_young’s picture

Status: Active » Fixed

Okay, I figured it out once I found the views_slideshow_cycle.js file:

settings.opts[option] = function(index, DOMelement) {
var returnVal = '';
eval(pagerAnchorBuilderValue);
return returnVal;

In the advanced property, just do:

returnVal = '<li>test' + index + '</li>';

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.