I have tried to figure out a way of letting a jquery dialog button called Create do the same as an asp.net submit button.
<input type="submit" value="Create" />
I am using jquery 1.3.2
I have come up with the following to let the dialog use the correct controller method.
var url = '<%= Url.Action("Create1", "Home") %>';
$.post(url,data,
function(data) {
alert("Successful. Id for this client is " + data.ClientNo);
$("#CreateForm input").attr("value", ""); // Success
},
"json"); // DataType
However, the method requires a model parameter
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Create1(ClientDetail client)
Looking at http://api.jquery.com/jQuery.post/ data parameter is a map or string sent to the server
I am wondering is it possible to convert a model into a map or string possibly using the .attr method?
Thank you
