102 comments found.
Sometimes if load the page, content move up to 10 pixel (-10px), then scroll down the page, position back to normal. In what may be the problem?
Hi! May I have a look on example?
I think you need properly adjust text padding and right position of “rollbar-path-vertical” div.
Hi I have this problem: in div the text go behing the scroll.
It’s hard to tell what’s wrong. Could you show me some example?
hello.
Is it possible to implement this plugin in Wordpress – it works ok on static page but I cannot make it working on Wordpress
Rollbar is not WP plugin, it’s jquery plugin and if you want to use it with WordPress it should be added as external plugin.
Thanks I understand that its not wp plugin however I’m not sure if it will work in wordpress at all. I tried to use a similar one and could not get it to work
I think if embedded properly my plugin will work fine in WP
I would go for it I know it works. I would recommend you doing a guide of how to implement it in Wordpress this would bring a lot of new purchases for you. I’m not a pro in Wordpress therefore I do not want to get something that may not work.
Thank you for your response. I have one more question – when viewing on a touch device, the scrolling is very slow and laggy. Do you have any tips on increasing performance when using your plugin?
It may be slow because it’s JS driven scroll, not a native device scroll. And it’s resource consuming, especially noticeable on slow devices.
Hiya, I have a certain situation I don’t know how to get this script working in:
I have a div that’s set on overflow:auto and has dynamic content updated to it. Once the content exceeds the div height, I get a scroll bar as expected. However, if I try calling this div to this scrollbar plugin, I get no such effect. How can I make it work with dynamic content?
Hello,
rollbar should switch overflow:auto to overflow:hidden on this DIV and make content inside scrollable. If it does not work like this, I would need some real example to check it myself.
BTW . make sure the height of this DIV (that one that you run rollbar for) is set to some fixed amount in px or %
Is it possible to make the horizontal scrolling one extend on either side of the page so its height is fixed but the width is variable depending on the size of the browser to overflow off of either side?
I really liked it! I recommend it to everyone, it’s awesome and light!
thanks, i can wait, this is not a problem.
hello!
what must i change so that it works in ajax? i think in ready block of live or “on” command change?
the exact syntax is? plane you a update your documentation for this problem? better for other people.
its not a problem, rather a feature to support dynamic content. I have a code and I plan to include it in update that will have few another features. If you need you can drop me email using my profile mail form and I will send you the files. Or you can wait for an update in this month.
hey flGravity, great plugin!
Quick question. how well does this work with dynamic content? that is content loaded via ajax?
I’ve got a page which has a stream of new data loaded in every minute or so, will this plugin work well in that scenario?
Thanks! It will work, but only with a slight modification. I can do this for you if you’re interested, just contact me using mail form on my profile page.
I added this bit of code and seems to solve that problem:
if ($('.rollbar-path-vertical').height() > $('.rollbar-content').height()){
$('.rollbar-content').css('top', '0');
}
Maybe helpful to others
Thanks mantisspider! For dynamic content, you can add following code to the end of RollBar() constructor function. This code will adjust scrollbars every 500 ms and in case if content <= container it will reset scroll positions (top, left) to 0 and hide scrollbars at all.
setInterval(this.fixFn(function(){
this.checkScroll();
if(this.vdiff <= 0 || this.hdiff <= 0){
this.container.find('.rollbar-content, .rollbar-handle').stop().
animate({top:0,left:0},this.settings.scrollTime,this.settings.scrollEasing);
}
}), 500);
Thanks. Am I supposed to include that in the rollbar.js file? I only have the .min.js file.
will this also resolve a problem where elements within the scrolling container have 100% width does not fill up 100% of the space?
You have 2 files – jquery.rollbar.min.js and jquery.rollbar.js. This code you should add to ” jquery.rollbar.js”
>will this also resolve a problem where elements within the scrolling container have 100% width does not fill up 100% of the space?
if something doesn’t fit into container rollbar will add scrollbar -vertical or horizontal.
hi, i have a major problem:
I have divs inside the main container that can be minimised and hidden. when all the divs are shown the scroll bar lets me scroll down the page to view all divs.
But when I am at the bottom of the page and hide some divs the scroll bar will vanish as it thinks that the container is not overflowing.
Which means I can no longer scroll back up to the top of the page.
Any ideas how I can solve this problem? Thanks.
Helo flGravity,
This is a great plugin, using it in many ways. Wanted to know how to make the document body not scroll when using mousewheel over content inside a iFrame? The Rollbar plugin is being used on content inside the iFrame.
Thanks,
Yogi -
Please contact me using mail form on profile page and I will send you plugin code where this problem is fixed
I have an overlay(popup) where rollbar is being used and using the mousewheel causes the body to scroll. Any idea how to fix? I’ve been googling, but haven’t found a solution.
Thanks for letting me know. I found the problem. Contact me using mail form on my profile page and I will send you updated files.
Still doesn’t mean you cannot use it on your wordpress theme 
Anyway Gravity fella… can we change default design to custom one ?
Design you can change easily with CSS if you like, everything is customizable – color, size, paddings etc, you can even use image for slider.
“this Plugin has no valid header” and now? how can i fix that? WP 3 .3 ??
Rollbar is not WP plugin
yes, i load extra infos in a modal windows (beetween facebook or other communitys -> fancybox).
I think you just need to init plugin after ajax content has been loaded, and it will work. Check if there is callback onload function for ajax in fancybox or something
hi
works this plugin with ajax?
Hi! You mean ajax content loaded dynamically?
