05-13-2021 08:40 AM
Hi everyone,
I need make custom action toolbar button, which give me nodeIDs of selected files.
The case is about calling api with nodeIDs array infomartion.
in my custom view adf component I have:
<adf-toolbar title="Search folders by query"> <button mat-icon-button title="Run action" (click)="myCustomAction2($event)"> <mat-icon>replay</mat-icon> </button>
and in .ts file
myCustomAction2(event){ console.log(event); }
"event" contains many infomartion but i did not see my selected nodeRefs.
Can anyone help me please ? )
06-01-2021 12:23 PM
for (let row of this.data.getRows()) { if (row.isSelected == true) { console.log(row.getValue("nodeRef")); }
06-01-2021 12:23 PM
for (let row of this.data.getRows()) { if (row.isSelected == true) { console.log(row.getValue("nodeRef")); }
06-02-2021 04:20 AM
Hi @wity
Great that you found out how to do it - and thanks for showing us how! Really helpful to other users.
Cheers,
Explore our Alfresco products with the links below. Use labels to filter content by product module.