Hi, I found in this post https://community.esri.com/t5/arcgis-online-blog/show-attachments-in-pop-ups-with-arcade/ba-p/890588 how to display the first attachment. I'd like to view the other attachments by retrieving the list of attachment identifiers using arcade to calculate a new field:
//calculate the attach IDs field
function IDs(f){
return f.ID;
}
var Attach_ = Attachments($feature);
var AttachIDs = Map(Attach_, IDs);
return Concatenate(AttachIDs,',');
I don't understand why this isn't working. Can you help me?
Thanks,