a few bugs have been fix for multiBox
A bug with repeatedly open the same image has now been fixed. And if you don’t have the title attribute, the controls will still show.
version 1.3.1
A bug with repeatedly open the same image has now been fixed. And if you don’t have the title attribute, the controls will still show.
version 1.3.1
If you appreciate the work on this site please dontate! All donations at the moment will go the Mandogroup Foundation Charity!
Please be generous :)
Does anyone know how to set a specific x and y coordinates for a popup? One of my clients wants the popup on a specific location of a web page. Thanks in advance for your help!
I got a empty space at the bottom of my site. Does some one know how to fix it?
Some other mentioned it :
"Anonymous said…
I noticed a lot of redundant empty space at the bottom of a page when Multibox is used to display an image gallery with HTML. If you take a look at the phatfusion multibox page, you can see lotsa empty space at the bottom of the page too.
Is there any way to fix that?
Thanks".
And
"Self Defence said…
I put the fancy javascript on my site and it's working good, but there appears a deep padding on the page bottom, is it a bug too?"
For those with extra padding…….You may be seeing extra space that the anchor tags use; i.e. the hidden ones used to reference the images in your gallery. I may be way off but try applying a css class to the tags with 0 height??
Just my 2 cents…It might only be worth half a penny though…
In IE6,7,8 there are problem with images. When it opens the image for the first time, it deletes the image.
Can some one help!?
Thank you
Hi, I'm confirming bug when displaying html element in Windows Internet Explorer 7 (Invalid argument). Overlay is activated but not window MultiBoxContainer.
IE6 and other browsers are just fine as well as iFrame and Ajax in IE7.
Error may be replicated at the project site: http://www.phatfusion.net/multibox/
p
i think the problem with the overlay could be the fact that someone else fixed multibox for mootools 1.2, and that the fix was made om MB for MT 1.1…
So the fixed version of MB for MT 1.2 might not have that fix?
anyway, i'm still have the overlay height problem, any good solution yet, or am i misreading something?
thnks,
richard
@Leandro
i observed the same thing…this is what i came up with…
function callMultiBox() {
box = new MultiBox('mb', {descClassName: 'multiBoxDesc', useOverlay: true});
}
copy-paste the above function over the existing eventlistener…
now in a link, put onclick="callMultiBox();return false;"
am using onclick as above to initialize multibox…
when i close the multibox, the class called 'MultiBoxControls' stays there, so it's only the black background with the controls…only refreshing the page removes it…
is that a coding error or a bug?
Hi, first of all I would like to say great job on your scripts and tools, and many thanks for sharing them with everyone.
I am posting because I am having a problem with multibox. How open a multibox from Javascript, and not from link (with "a" tag).
How i can use onOpen and onClose?
How stop the background music from html page loaded in multibox when it close?
If you could release a fix or if anyone could post on how I can overcome this problem I would very much appreciate it.
Thanks in advance and keep up the good work!
Hi, thanks for this great control, i'm having an error, when a postback is fired by another buttom on the page, it's cause the link of multibox duplicate the link, and when i click on it, it's open a new page, not the multibox.
Thanks in advance.
The issue with the overlay box appears to be that it calculates page dimensions at the time it executes, which may or may not correspond to the page dimensions on final load.
Even executing on domready will load the overlay function when the DOM has loaded, but assets may still be in progress. Changing the addEvent to something like load should cause the overlay to cover a scrolling page every time. The trade is that if you click a link before the page has loaded, it loads the link as normal because the script has not yet been invoked.
A little something I tweaked for multibox because it doesn't seem right, when setting the position for images that may exceed the top or left of page:
this.options.offset x/y
if (top/left < 0) top/left = 0
It's nice to have that safety net but the frame is designed so that the (x) button protrudes from the top right corner of the frame with negative-position styling, meaning it protrudes right out of the top of the page at top = 0.
I set my top and left to if (>50) = 50, but YMMV on how much you want to offset the images. Maybe make this another optional value for users?