Has anyone ever been successful at getting the SimpleModel jquery pluggin to work in asp.net mvc? If so how did you implement it, I can’t seem to get the dialog to even display.
Has anyone ever been successful at getting the SimpleModel jquery pluggin to work in
Share
I am assuming you are talking about the SimpleModel jquery plugin found at http://www.ericmmartin.com/projects/simplemodal/ and that you’ve already got a basic ASP.NET MVC application setup.
I am going to run through how you can get the Basic Modal Dialog example working.
Get the plugin files into your ASP.NET MVC application
Reference the stylesheet and javascript files in your application
Open your Site.Master file under Views\Shared and paste the code below before the
</head>tagFinally, call the dialog in your view
For example in Index.aspx, you can paste the following code:
Hope that helps.
Matrich