angular 与 p-picklist 指定的操作是什么?
what are angular with p-picklist specified actions?
我有这个 angular 代码显示 2 个列表并在它们之间移动项目。当一个项目从可用列表移动到选定列表时,我需要调用一个方法
我尝试使用 (click)="refresh();"
但它 运行 是任何点击的方法,我需要 运行 特别是在从左向右移动项目时
<p-pickList (click)="refresh();" [source]="available" [target]="selected" sourceHeader="Available" targetHeader="Selected" [responsive]="true" filterBy="type"
dragdrop="true" dragdropScope="items" sourceFilterPlaceholder="Search by name" targetFilterPlaceholder="Search by name" [sourceStyle]="{'height':'300px'}" [targetStyle]="{'height':'300px'}">
<ng-template let-items pTemplate="item">
<div class="ui-helper-clearfix">
<div style="font-size:14px;margin:15px 5px 0 0">{{item.type}}</div>
</div>
</ng-template>
</p-pickList>
您需要调用 onMoveToTarget
方法,反之亦然 onMoveToSource
方法,而不是调用 (click)
事件。
从文档中阅读更多内容
我有这个 angular 代码显示 2 个列表并在它们之间移动项目。当一个项目从可用列表移动到选定列表时,我需要调用一个方法
我尝试使用 (click)="refresh();"
但它 运行 是任何点击的方法,我需要 运行 特别是在从左向右移动项目时
<p-pickList (click)="refresh();" [source]="available" [target]="selected" sourceHeader="Available" targetHeader="Selected" [responsive]="true" filterBy="type"
dragdrop="true" dragdropScope="items" sourceFilterPlaceholder="Search by name" targetFilterPlaceholder="Search by name" [sourceStyle]="{'height':'300px'}" [targetStyle]="{'height':'300px'}">
<ng-template let-items pTemplate="item">
<div class="ui-helper-clearfix">
<div style="font-size:14px;margin:15px 5px 0 0">{{item.type}}</div>
</div>
</ng-template>
</p-pickList>
您需要调用 onMoveToTarget
方法,反之亦然 onMoveToSource
方法,而不是调用 (click)
事件。
从文档中阅读更多内容