Kendo ui 如何在内联删除之前获取剑道网格中的行值

Kendo ui 如何在内联删除之前获取剑道网格中的行值,kendo-ui,kendo-grid,Kendo Ui,Kendo Grid,我一直在使用内联删除剑道网格,但我需要检查条件,然后删除行 @(Html.Kendo().Grid<DocumentSearchViewModel>() .Name("documentListGrid") .Columns(columns => { columns.Bound(model => model.AgentID).Title("Agent Code").Wid

我一直在使用内联删除剑道网格,但我需要检查条件,然后删除行

@(Html.Kendo().Grid<DocumentSearchViewModel>()
          .Name("documentListGrid")
          .Columns(columns =>
              {
                  columns.Bound(model => model.AgentID).Title("Agent Code").Width("15%");
                  columns.Bound(model => model.DocumentSecurityID).ClientTemplate("#if(data.AllowToView==1)" +
                                                                                    "{ #<a class='lnkDocument'  href='" + Url.Action("Download", "Document", new { fileName = "#=ScanFile#", fileLocation = "#=VC01#", batchTime = "#=BatchTime#", documentNumber = "#=CaseID#" }) + "' target='documentViewer'>#=data.BatchDescription#</a>#" +
                                                                                  " " + " }" +
                                                                                  "else{#<a class='disable-link' onclick='return Response();'>#=data.BatchDescription#</a> #}#").Title("Description").Width("30%");
                  columns.Bound(model => model.CaseID).Width("10%").Title("Case#");
                  columns.Bound(model => model.DocumentGroupID).Width("15%").Title("Group ID");
                  columns.Bound(model => model.BatchNumber).Width("10%").Title("Batch#");
                  columns.Bound(model => model.CreatedDate).Width("10%").Format(UI.DocumentSearchDateFormat).Title("Created Date");
                  columns.Command(command => command.Custom("Remove").Click("deleteRow"));
                  columns.Bound(model => model.DocSystemID).Visible(false);

              })
          .Pageable()

          .Sortable(sortable => sortable.AllowUnsort(false))
          .DataSource(dataSource => dataSource
                                        .Ajax()
                                        .ServerOperation(false)
                                           .Model(model => model.Id(p => p.CaseID))

                                        .Read(read => read.Action(WorkflowControllers.Document.ActionNames.GetDocumentList, WorkflowControllers.Document.Name, new { caseId = @Model.CaseID }))
                                        .Events(ev => ev.Change("OnGridChange"))

          ).AutoBind(true).Events(events => events.DataBound("DisplayDocument"))
          )
如何获取行的值并检查条件

 $('#Grid').click(function () {
    var gview = $(this).data("kendoGrid");
    var selectedItem = gview.dataItem(gview.select());
    var Guid = selectedItem.YourPropertName;

})
selectedItem将具有模型的所有属性

 $('#Grid').click(function () {
    var gview = $(this).data("kendoGrid");
    var selectedItem = gview.dataItem(gview.select());
    var Guid = selectedItem.YourPropertName;

})