Hi all,
I have created a new field called 'gw_image' of type 'file -> image' and set the option 'can store full image' to be true.
I wondered if there was a way to display this using FetchXML? Everything I have tried has not worked.
<fetch>
<entity name="gw_onlineresources">
<attribute name="gw_onlineresourcesid" />
<attribute name="gw_image" />
<order attribute="gw_name" descending="false" />
</entity>
</fetch>
{% for result in onlineresources.results.entities %}
{{ result.gw_image }}
{{ result.gw_image.Type }}
{{ result.gw_image.Size }}
{{ result.gw_image.Url }}
{{ result.gw_image.Value }}
{% endfor %}
If the FetchXML method is not an option, I could maybe use the Image URL. From my little attempts thus far, I cannot seem to get it to display the full image (only a tiny thumbnail version) - despite setting full=true
/Image/download.aspx?Entity=xxx&Attribute=xxx&Id=xxx&Full=true
https://learn.microsoft.com/en-us/power-pages/configure/image-column
Any help much appreciated!