You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I have a page, where li-elements are loaded in a gridder-ul and after that I initialize the gridder with $('.gridder').gridderExpander(....) for these elements -> is working correct.
If I now want to load more li-elements and append them to the gridder-ul it is not working anymore. If I re-initialize the gridder the new elements are working and the old ones not.
Any idea how this could be fixed?
I initialize it like following:
$('.gridder').gridderExpander({
scroll: true,
scrollOffset: 30,
scrollTo: "listitem", // panel or listitem
animationSpeed: 400,
animationEasing: "easeInOutExpo",
showNav: false, // Show Navigation
nextText: "Next", // Next button text
prevText: "Previous", // Previous button text
closeText: "Close", // Close button text
onStart: function(){
//Gridder Inititialized
},
onContent: function(){
//Gridder Content Loaded
var element = jQuery(".gridder-show");
initializeFullFlexslider(element); // custom function to initialize a flexslider within the gridder
},
});
The text was updated successfully, but these errors were encountered:
I am also having this issue. @oriongunning any chance you could present an example of how this would work? (i.e. a successfully working implementation).
Hi,
I have a page, where li-elements are loaded in a gridder-ul and after that I initialize the gridder with $('.gridder').gridderExpander(....) for these elements -> is working correct.
If I now want to load more li-elements and append them to the gridder-ul it is not working anymore. If I re-initialize the gridder the new elements are working and the old ones not.
Any idea how this could be fixed?
I initialize it like following:
The text was updated successfully, but these errors were encountered: