Welcome to Knowage Q&A, where you can ask questions and receive answers from other members of the community.
0 votes
1 view
I'm creating a html widget using KNOWAGE 6.2.

While creating the html widget using <img> tag i'm getting the below issue.

After creation of the widget using img tag in editing mode, the image is displaying.

But after saving the cockpit or on preview image tag is missing from the html source code and no image is displaying.

Am I missing anything?
Environment KNOWAGE6.2, Ubuntu
in Cockpit, Dashboard and Console by (150 points)

1 Answer

+1 vote
 
Best answer
You should specify allowed path to image in resources/services-whitelist.xml

for remote images:

   <service baseurl="http://....." />  

for local images:
   <service relativepath="/knowage/themes/" />
by (2.8k points)
selected by
...