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.

Dean Bates
  • 1,927
  • 5
  • 25
  • 24

2 Answers2

1

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
  • 2,841
  • 2
  • 23
  • 23
1

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

Community
  • 1
  • 1
WVDominick
  • 2,074
  • 15
  • 17