I am updating a div with a partial view by using something like this:
<% using (Ajax.BeginForm("Action", "Controller",
new { id=Model.id },
new AjaxOptions
{
UpdateTargetId = "divId",
InsertionMode = InsertionMode.InsertAfter,
}))
{ %>
and its working fine, the returned view gets appened to the div, however I know need to execute a javascript when the post is successful, so I thought: "easy, just add OnSuccess = "MyJsFunc()"
" to the AjaxOptions
, but after doing this, it stopped working! now the page is refreshed and only the returned partial view is rendered :(, I even tried with a simple Alert("Hi")
and its nor working.. how can I get this to work?
(by the way I think this can be a dup of http://stackoverflow.com/questions/1994754/execute-javascript-after-loading-a-mvc-page-using-ajax-beginrouteform but that question got abandoned with no answer)