Hi i'm using the document attachment type in a doc type so images can be uploaded.
Attribute name: property_images
field caption: Images
in my aspx page i am trying to use one of the webparts found in CMSWebParts\Attachments\
i then use this as a control on my page adding the reference at the top etc so i have
<%@ Register Src="~/CMSWebParts/Attachments/DocumentAttachments.ascx" TagName="DocumentAttachments" TagPrefix="uc1" %>
<uc1:DocumentAttachments ID="DocumentAttachments" runat="server" />
reading the documentation i gather that you need to pass in a Guid on the AttachmentGroupGUID property in the documentation it mentions passiing in the form field name which would be Images. giving me this
<uc1:DocumentAttachments ID="DocumentAttachments" AttachmentGroupGUID="Images" runat="server" />
This throws an error "
Cannot create an object of type 'System.Guid' from its string representation '' for the 'AttachmentGroupGUID' property."
can any one help me out with this?
i had a look in the db and in the property table Images col there is no data!
but in the attachments folder the images are there! is this normal?