Kendo Grid获取选定的行并分配给局部变量

时间:2015-09-25 15:07:14

标签: angularjs typescript kendo-grid

我正在使用带有AngularJs和TypeScript的Kendo Grid。我能够获取所选行,但我无法将结果分配给局部变量,因为它似乎在不同的范围内运行。

我的网格具有以下属性:

this.gridOptions = {
    dataSource: {
      data: this.items,
      pageSize: 10
    },
    selectable: 'row',
    filterable: {
      mode: 'row'
    },
    change: this.onItemSelect,
...
}

打字稿功能如下:

onItemSelect(kendoEvent : any) {
  var grid = kendoEvent.sender;
  this.selectedItem = grid.dataItem(grid.select());
}

selectedItem在我的Controller类中定义:

export class ServicePackageModalController {
private selectedItem : any;
 ...
}

问题是当我稍后在另一个按钮事件中检查时,this.selectedItem是未定义的。我认为这是因为在Kendo Grid中调用函数时范围不同,所以'这个'意味着别的东西而不是我的控制器类:

handleNext() {
 console.debug(this.selectedItem) //this is undefined here?
}

所以我的问题是如何将此结果分配给我的控制器类,以便稍后可以访问它?

1 个答案:

答案 0 :(得分:1)

我能看到解决这个问题的方法是将以下代码添加到我的handleNext函数中:

  var entityGrid = $("#EntitesGrid").data("kendoGrid");
  var selectedItem = entityGrid.dataItem(entityGrid.select());

您还需要在kendo-grid指令上使用名称为id的{​​{1}}属性。