PDA

View Full Version : LightBox and ProtoLoad



Urkman
21 May 2008, 5:55 AM
Hello,

I'm new to extJs. At this Time I'm using prototype with some other Tools on my sites.
Now I'm looking for two of this tools:
1.) LightBox( http://www.huddletogether.com/projects/lightbox2/ )
2.) ProtoLoad( http://aka-fotos.de/protoload/ )

Is there something similar to this in extJs? Or is it possible to use this Tools with extJs, because prototype is included with extJs?

Thanks for your help on this noob question :)

Greetings,
Urkman

dj
23 May 2008, 2:56 AM
1) I don't know of an Ext Version of LightBox. But if you use the prototype adapter you can use LightBox itself.
2) use Ext.Element's mask (http://extjs.com/deploy/dev/docs/?class=Ext.Element&member=mask) and unmask (http://extjs.com/deploy/dev/docs/?class=Ext.Element&member=unmask)
e.g.


Ext.getBody().mask('loading....');

mystix
23 May 2008, 7:57 AM
Re: LightBox...

Try the ShadowBox library by @meej:
http://extjs.com/forum/showthread.php?t=24200

it even comes with an adapter for Ext. very good stuff.

Urkman
26 May 2008, 4:12 AM
Great :-)
Thanks for your Help...

Urkman