我有以下问题:我有一个 Telerik mvc 网格的自定义编辑命令。这是网格的代码:
Html.Telerik().Grid<Customer>("customers")
.Name("Grid")
.DataKeys(k => k.Add(o => o.Id))
.DataBinding(dataBinding => dataBinding.Ajax().Delete("Delete", "Customer").Select("AjaxIndex", "Customer"))
.Scrollable(builder => builder.Height(350))
.Filterable()
.Sortable(s => s.OrderBy(order => order.Add(o => o.Id).Descending()))
.Columns(c =>
{
c.Bound(o => o.Id);
c.Bound(o => o.FirstName);
c.Command(s =>
{
s.Custom("editCustomer")
.Text("Edit")
.Ajax(true)
.Action("Edit", "Customer");
s.Delete().ButtonType(GridButtonType.Image); }).Width(175);
})
.ClientEvents(builder => builder.OnComplete("onEditComplete"))
.Pageable(p => p.PageSize(5))
.Selectable()
.Render();
这是edit命令的回调javascript函数:
function onAppraisalPhaseComplete(e)
{
if (e.name == "editCustomer") {
$("#dialog-form").html(e.response.PartialViewHtml);
open($("#dialog-form"), "Edit Customer"); // this will display a modal with the edit view
}
}
编辑表单是对以下方法的 ajax 调用:
public ActionResult JsonEdit(Customer customer)
{
if ((Rules.GetBrokenRules(customer).Count == 0))// there is no validation errors
{
Repository.Update(customer);
}
else
{
ModelState.AddModelErrors(Rules.GetBrokenRules(customer));
return Json(new
{
Success = false,
PartialViewHtml = RenderPartialViewToString("Insert", appraisalPhaseViewModel)
});
}
//if save successful get the customers list and return the partial of the grid in Json
var customers= Repository.GetAll().ToList();
ViewData["customers"] = customers;
return Json(new
{
Success = true,
PartialViewHtml = RenderPartialViewToString("MasterGrid")
});
完成时的 ajax 调用如下:
function JsonSave_OnComplete(context) {
var jsonEdit = context.get_response().get_object();
if (jsonEdit.Success) { // if the operation is successful reload grid and close the modal dialog
$("#MasterGridDiv").html(jsonEdit.PartialViewHtml);
CloseDialog($('#dialog-form'));
} else { //Redisplay the edit partial view in the modal
$("#dialog-form").html(jsonEdit.PartialViewHtml);
}
}
编辑操作完成后,如果我尝试按下删除按钮,它将调用 JsonEdit 操作而不是删除操作。我不知道我在这里做错了什么?另外,有时删除按钮不起作用,调用ajax绑定而不是删除按钮。