Version im running is 8.1.4.
Im using the below code, so when the user click on a hyperlink a fancybox gallery will pop up and display the ten images. Renders like this currently
...but when i change the control to a DocumentAttachmentsList it renders like this...
...so i dont think its the correct control for the current setup
<%@ Register Src="~/CMSModules/Content/Controls/Attachments/DocumentAttachments/DocumentAttachments.ascx" TagName="DocumentAttachments" TagPrefix="cms" %>
<div class="standard-listing__item fancybox-container">
<div class="media-element">
<div class="media-element__image-container">
<a class="fancybox-alias" href="#">
<img class="media-element__image" src="<%# Eval("ListingImage") %>">
</a>
</div>
<div class="media-element__content">
<h4 class="header-separator"><%# Eval("Title") %></h4>
<p><%# Eval("ListingText") %></p>
<div class="fancybox-links-container">
<cms:DocumentAttachments AttachmentGroupGUID="C28C976D-C113-48CD-AC54-DAE85BA6B321" ID="documentAttachments" runat="server" TransformationName="tourismireland.marketingactivity.Attachments" Path='<%# Eval("NodeAliasPath") %>' />
</div>
</div>
</div>
</div>