Community Tip - Did you know you can set a signature that will be added to all your posts? Set it here! X
Pls help on this logic
Solved! Go to Solution.
Since Image widget uses the Media entity to display image, it is not possible to display image from System Repository using Image widget. Instead use following steps :
Use Service :
var Content = Things["SystemRepository"].LoadImage({
path: undefined /* STRING */
});
path: complete path of image
Use Value Display widget :
Since Image widget uses the Media entity to display image, it is not possible to display image from System Repository using Image widget. Instead use following steps :
Use Service :
var Content = Things["SystemRepository"].LoadImage({
path: undefined /* STRING */
});
path: complete path of image
Use Value Display widget :
Hi @ranjank ,
If above response has answered your question, please mark as Accepted Solution, for the benefit of others who may have the same question.