我正在使用 Kendo UI 网格来编辑记录。
我有一个加载数据功能:
private loadData(): void {
this.gridView = {
data: this.data.slice(this.skip, this.skip + this.pageSize),
total: this.data.length
};
}
我有一项服务可以更新数据并将其存储在this.data content
:
this.dataservice.update().then(res => this.loadData());
但是,UI 不会更新。我应该如何更新网格 UI?