vote up 1 vote down star

This is all being done in an ASP.NET web forms application:

I need a modal popup that will show the user a preview of images that match a search criteria (e.g. they search for "dog" and the popup shows them all dog-related pictures). The search results shouldn't be too long, but the popup should support the ability to scroll if necessary. I also need to capture which image they selected and send that info back to the calling page.

I've taken a look at some of the options out there and am having a hard time deciding on which one to use. Any suggestions?

flag

57% accept rate

6 Answers

vote up 1 vote down

i prefer the use of jquery because it doesnt require the use of any server-side computations. also if the app ever ported to another technology other than asp.net it will still most likely work.

link|flag
vote up 1 vote down

I'm happy with jqModal, the plugin it's really minimalistic (basically 2.97kb of JS, and 496bytes of css) and works great...

link|flag
vote up 0 vote down

I've been quite happy with the jQuery plug-in Simple Modal.

link|flag
vote up 0 vote down

I'd say go with ours; Ajax Calendar Starter-Kit (click the button to the lower left corner) but then again I am definitely biased...

link|flag
vote up 0 vote down

don't use any modal plugins, create your own.

<div id="modal"></div>

modal { position: absolute; top: 200px; left: 200px; z-index: 12; width: 200px; height: 100px; background: red; color: blue; }

Then you can have some javascript on it, I recommend jquery's draggable, and then put some element that you can click on it so it disappears.

VoilĂ !!!

link|flag
the simplest form for disappearing elements, if you don't want to use any js frameworks, is to alter css display property. myelem.onclick = function() { myelem.style.display = "none"; } – Marko Mar 12 '09 at 11:06
vote up 0 vote down

Does anyone consider dynamicdrive DHTML Modal window v1.1(www.dynamicdrive.com/dynamicindex8/dhtmlwindow/dhtmlmodal.htm)? Does JQModal better?

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.