views:

110

answers:

2

I'm looking for a example or article that demonstrates using SimpleModal in an ASP.NET webforms project.

Ideally the article would show creates and edits of a grid row using simplemodal.

A: 

How about this:

http://beckelman.net/post/2008/09/11/Modal-Delete-Confirmation-in-an-ASPNET-ListView-Using-SimpleModal-jQuery-Plugin.aspx

It's a little old, but the concepts should still apply. You'll want to make sure to use the appendTo option in SimpleModal:

$(el).modal({appendTo: 'form'});

-Eric

Eric Martin
+1  A: 

The developer's page is pretty nice and gives a good example of how to use it: SimplModal

There is also an old stackoverflow question that may help: Stackoverflow

This may also help: SimpleModal issues

WVDominick