一連のデータを表示する角度のあるプロジェクトに取り組んでいます。そのために、primNGデータ テーブルを使用しています。すべて正常に動作しますが、データ ソースからエントリを削除すると、データ テーブルが更新されず、削除されたエントリがテーブルに表示されます。どんな助けでも大歓迎です。
mycomponent.html
<p-dataTable [value]="tabledata">
<p-column field="vin" header="Vin"></p-column>
<p-column field="year" header="Year"></p-column>
<p-column field="brand" header="Brand"></p-column>
<p-column field="color" header="Color"></p-column>
</p-dataTable>
削除時にデータソースをスライスしています
mycomponent.ts
this.tabledata.slice(this.tabledata.indexOf(datatodelete), 1);