ok i have a record grid with different records
plus i have a dropdown as column as well (which ought to go and just save the value i have selected and come back on the same stage , i have to send some id as well) . how to achieve this . form is at the movement submitting in my code.
<% using (Ajax.BeginForm("SaveStatus", new AjaxOptions { OnSuccess = "jobStatusChanged" }))
{%>
<%=Html.Hidden("JobFormMain",item.int_JobFormMain) %>
<%: Html.DropDownList("SelectedItem", JobHelper.GetSelectStatus(item.int_JobFormMain) as IEnumerable<SelectListItem>, new { onchange = "this.form.submit();" })%>
<% } %>
public ActionResult SaveStatus(int? page,FormCollection form, int id = 0)
{
return View()
}