Hi All ,
I have a media file . I want to access the media file inside the webcomponent . I am doing so :
<div>
<img src="media:///Images/delete.png">
</div>
But this is not working . What can I do ? . Please provide some suggestion .
Hi All ,
I have a media file . I want to access the media file inside the webcomponent . I am doing so :
<div>
<img src="media:///Images/delete.png">
</div>
But this is not working . What can I do ? . Please provide some suggestion .
Hi,
please see my answer in this thread https://forum.servoy.com/viewtopic.php?f=69&t=21738
Although that is about CSS, the same applies to webcomponents.
The webcomponent runs client-side (browser) and therefor doesn’t have a clue what ‘media:///’ means, as this is a Servoy thing.
In NG all media files are exposed, so you just need to change your reference.
Hope this helps.
Thanks for your reply.