Hi Everyone,
I have a requirement where I need to surface/show entityimages from CRM to CRM Portals (footer section) but I am not able to do so. I am doing the following:-
1. Add fetchxml to get entityimage attribute from records I want
2. Converty entityimage data to Base64
3. Set it to HTML <img> tag like below
<input type="hidden" id="hdnval" value="{{result['DD.entityimage']}}"> <img id="myimg" src=""; alt="Red dot" /> var sourceofImage="data:image/jpeg;base64,[BASE64_DATA]"; document.getElementById("myimg").src =sourceofImage;
Any help and suggestion highly appreciated.
Thanks in Advance.
*This post is locked for comments