行を削除しようとしている ag グリッドがあります...「スプライス」手法を使用してデータ ソースから行を削除できます。その後、テーブルを更新します。しかし、エラーが表示されます。行を削除するために使用しているコード
selectedvalue={} //this holds the selected row value
rowData=[]; //this holds all the row data
onRowSelected(event) {
this.selectedvalue = event;
}
deletebtn() {
for (let i = 0; i < this.rowData.length; i++) {
if (this.selectedvalue.node.data.make === this.rowData[i].make) {
this.rowData.splice(i, 1);
this.gridOptions.api.refreshView();
}
}
}
このようなエラーが表示されています->未定義のプロパティ「refreshView」を読み取れません...行の削除後にテーブルに加えられた変更を監視するにはどうすればよいですか。