I am using the standard method to get the properties of my page:
ClientLogosDatasource datasourceItem = ClientLogosDatasourceProvider.GetClientLogosDatasource(datasourceNodeGuid, "en-us", SiteContext.CurrentSiteName)
.Columns("ClientLogosDatasourceHeadingText", "ClientLogosDatasourceImages");
Which has an 'Attachments' form component
But when I attempt to enumerate over the property in my MVC application, the enumeration is empty.
Stepping through the code, it basically skips the foreach completely. I'm not sure why the Images property is null/empty.
Any help would be appreciated!
Here's the basic API example (not MVC specific) but should get you in the right direction.