BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
<div id="grid" ej-grid e-datasource="data" e-actionfailure="failure" e-editsettings-allowediting='false' e-editsettings-allowadding='true'> |
<div id="grid" ej-grid e-datasource="data" e-actionfailure="failure" e-allowpaging="true" >
$scope.failure = function (args) { this.model.isEdit = true alert(args.error.statusText); }
public ActionResult Insert(Supplier value) { if (!ModelState.IsValid) { var message = string.Join(" | ", ModelState.Values .SelectMany(v => v.Errors) .Select(e => e.ErrorMessage)); return new HttpStatusCodeResult(HttpStatusCode.BadRequest, message); } … } |