You can transfer objectas your data:
$.ajax({
type: 'POST',
url: '@Url.Action("SetDisplaySettings", "DisplaySettings")',
data:{
form : $('#Form1').serialize(),
other : ...
},
success: function (result) {
$('#chkIsSystemDefault').prop('checked', false);
if(result=="2")
{
showAlertBox("Display Settings updated.");
}
}
});
source
share