У меня есть MVC 3 Razor Telerik grid . При нажатии кнопки «Обновить» для кнопки «Правка» выполняется соответствующий контроллер и выполняется оператор TryUpdateModel .
Я специально добавил текст, который, как я знаю, мог бы вызвать ошибку. TryUpdateModel возвращает false (что ожидается в этом случае), а затем выполняет return View (); заявление.
Однако я получаю модальное диалоговое окно с надписью «Запрошенный URL вернул ошибку 500» Если я нажму на модальное диалоговое окно и посмотрю на сетку, сообщение проверки не появится.
Если я не использую сетку Telerik только с полями ввода, сообщение проверки корректно отображается из моих аннотаций данных, которые находятся внутри моей модели.
Что я делаю неправильно?
Вот мой взгляд:
@model Telerik.Web.Mvc.GridModel<YeagerTech.YeagerTechWcfService.Customer>
@{
ViewBag.Title = "Customer Index";
}
<h2>
Customer Index</h2>
@( Html.Telerik().Grid<YeagerTech.YeagerTechWcfService.Customer>(Model.Data)
.Name("Customers")
.DataKeys(dataKeys => dataKeys.Add(o => o.CustomerID)
.RouteKey("CustomerID"))
.ToolBar(commands => commands.Insert().ButtonType(GridButtonType.Text).ImageHtmlAttributes(new { style = "margin-left:0" }))
.Columns(columns =>
{
columns.Bound(o => o.CustomerID).Hidden(true);
columns.Command(commands =>
{
commands.Edit().ButtonType(GridButtonType.Text);
}).Width(200).Title("Command");
columns.Bound(o => o.Email).Width(200);
columns.Bound(o => o.Company).Width(200);
columns.Bound(o => o.FirstName).Width(100).Title("FName");
columns.Bound(o => o.LastName).Width(100).Title("LName");
columns.Bound(o => o.Address1).Width(200).Title("Addr1");
columns.Bound(o => o.Address2).Width(100).Title("Addr2");
columns.Bound(o => o.City).Width(100);
columns.Bound(o => o.State).Width(40).Title("ST");
columns.Bound(o => o.Zip).Width(60);
//columns.Bound(o => o.HomePhone).Width(120);
//columns.Bound(o => o.CellPhone).Width(120);
//columns.Bound(o => o.Website).Width(100);
//columns.Bound(o => o.IMAddress).Width(100);
//columns.Bound(o => o.CreatedDate).Format("{0:MM/dd/yyyy}").ReadOnly(true).Width(120);
//columns.Bound(o => o.UpdatedDate).Format("{0:MM/dd/yyyy}").ReadOnly(true).Width(120);
}).DataBinding(dataBinding =>
dataBinding.Ajax()
.Insert("_InsertAjaxEditing", "Customer")
.Update("_SaveAjaxEditing", "Customer"))
.Editable(editing => editing.Mode(GridEditMode.InLine))
.Pageable()
.Sortable()
.Scrollable()
)
Вот мой контроллер:
[HttpPost]
[GridAction]
public ActionResult _SaveAjaxEditing(YeagerTechWcfService.Customer customer)
{
CustomerValidate custValidate = new CustomerValidate();
custValidate.CustomerID = customer.CustomerID;
custValidate.Email = customer.Email;
custValidate.Company = customer.Company;
custValidate.FirstName = customer.FirstName;
custValidate.LastName = customer.LastName;
custValidate.Address1 = customer.Address1;
custValidate.Address2 = customer.Address2;
custValidate.City = customer.City;
custValidate.State = customer.State;
custValidate.Zip = customer.Zip;
custValidate.HomePhone = customer.HomePhone;
custValidate.CellPhone = customer.CellPhone;
custValidate.Website = customer.Website;
custValidate.IMAddress = customer.IMAddress;
if (TryUpdateModel(custValidate))
{
try
{
db.EditCustomer(customer);
TempData["ErrCode"] = "Customer successfully updated.";
return RedirectToAction("Index", "Home");
}
catch (Exception ex)
{
TempData["ErrCode"] = "CustErr";
ViewBag.Error = ex.Message;
return View();
}
}
else
return View();
}