views:

166

answers:

1

Fires the action when I'm using Html.BeginForm but not Ajax.BeginForm. Anyone know why?

A: 

The reason being was that the jQuery.JQGrid() I had being called via a $(document).ready(function(){} located in the partial. This executes via a normal post but in an ajax post, this function doesn't get fired. Instead I had to place it in a load function that gets called after the OnSuccess of the Ajax form. Works like a charm now!

RailRhoad