我想在拖放两行数据后触发重新排序事件,但在下面的文档中看不到它:
https://www.primefaces.org/primeng/#/table/reorder谁能帮我,谢谢!
根据文档 ,
有两个回调可用,
onColReorder - 在列重新排序时调用的回调
onRowReorder - 在行重新排序时调用的回调。
它们列在同一页面的事件部分下
https://www.primefaces.org/primeng/#/table
对于那些想知道在哪里绑定onRowReorder
回调以捕获行重新排序事件的人。
app.component.html:
<p-table [value]="products" (onRowReorder)="onRowReorder($event)">
...
</p-table>
app.component.ts:
onRowReorder(event){
console.log(event); //{dragIndex: 1, dropIndex: 2}
}
在堆栈闪电战中查看