Hello,
pouzivam infinite scroll v jednom tabe, funguje to ako ma, co vsak chcem dosiahnut je nasledovne:
Infinite scroll sa aktivuje az ked sa aktivuje 4.tab (co funguje v poriadku).
Nasledne ale ked prepnem na akykolvek iny tab a scrollnem tam, vidim v console, ze v 4 tabe sa zatial nacitava dalsi obsah. Tomuto chcem zamedzit.
Druha chyba je, ze ked potom opatovne prepnem na 4.tab, funckia sa spusti opat a loaduje uz natiahnuty obsah :-/
Vedel by mi niekto pomoct ako upravit funkcie?
infinite scroll:
Kód:
(function($) {
$.fn.scrollPagination = function(options) {
var settings = {
nop : 10, // The number of posts per scroll to be loaded
offset : 0, // Initial offset, begins at 0 in this case
error : 'No More Posts!', // When the user reaches the end this is the message that is
// displayed. You can change this if you want.
loading : 'Loading...',
delay : 500, // When you scroll down the posts will load after a delayed amount of time.
// This is mainly for usability concerns. You can alter this as you see fit
scroll : true // The main bit, if set to false posts will not load as the user scrolls.
// but will still load if the user clicks.
}
// Extend the options so they work with the plugin
if(options) {
$.extend(settings, options);
}
// For each so that we keep chainability.
return this.each(function() {
// Some variables
$this = $(this);
$settings = settings;
var offset = $settings.offset;
var busy = false; // Checks if the scroll action is happening
// so we don't run it multiple times
// Custom messages based on settings
if($settings.scroll == true) $initmessage = $settings.loading;
else $initmessage = 'Click for more';
// Append custom messages and extra UI
$this.append('<div class="content"></div><div class="loading-bar">'+$initmessage+'</div>');
function getData() {
// Post data to ajax.php
$.post($settings.url, {
action : 'scrollpagination',
number : $settings.nop,
offset : offset,
variables : $settings.variables,
}, function(data) {
// Change loading bar content (it may have been altered)
$this.find('.loading-bar').html($initmessage);
// If there is no data returned, there are no more posts to be shown. Show error
if(data == 0) {
$this.find('.loading-bar').addClass('nopost-bar');
$this.find('.nopost-bar').html($settings.error);
}
else {
// Offset increases
offset = offset+$settings.nop;
// Append the data to the content div
$this.find('.content').append(data);
// No longer busy!
busy = false;
// RE-call uniform for checkboxes
$('.accomodation_list input[type="checkbox"]').uniform();
}
});
}
getData(); // Run function initially
// If scrolling is enabled
if($settings.scroll == true) {
// .. and the user is scrolling
$(window).scroll(function() {
// Check the user is at the bottom of the element
if($(window).scrollTop() + $(window).height() > $this.height() + $settings.height_offset && !busy) {
// Now we are working, so busy is true
busy = true;
// Tell the user we're loading posts
$this.find('.loading-bar').html($settings.loading);
// Run the function to fetch the data inside a delay
// This is useful if you have content in a footer you
// want the user to see.
setTimeout(function() {
getData();
}, $settings.delay);
}
});
}
// Also content can be loaded by clicking the loading bar/
$this.find('.loading-bar').click(function() {
if(busy == false) {
busy = true;
getData();
}
});
});
}
})(jQuery);
definicia tabov a volanie scrollera:
Kód:
$(document).ready(function() {
// accomodation - TABS
var $tabs = $('#content #content_box #accomodation_detail #tabs').tabs();
var active_tab = $tabs.tabs({
activate: function(event ,ui){
if(ui.newTab.index() == 4) // if active tab REVIEWS
{
var $scroller = $('#comments').scrollPagination({
url : './ajax/accomodation_review_show.php',
variables: {
aid : '<? echo htmlspecialchars($accomodation["aid"]); ?>',
lang : '<? echo htmlspecialchars($lang); ?>',
},
nop : 5, // The number of posts per scroll to be loaded
offset : 0, // Initial offset, begins at 0 in this case
height_offset : 1000,
error : 'No More Posts!', // When the user reaches the end this is the message that is
// displayed. You can change this if you want.
loading : 'Loading...',
delay : 500, // When you scroll down the posts will load after a delayed amount of time.
// This is mainly for usability concerns. You can alter this as you see fit
scroll : true // The main bit, if set to false posts will not load as the user scrolls.
// but will still load if the user clicks.
});
}
else
{
// stop scroller
}
}
});
});