Please Note This forum exists for community support for the Mango product family and the Radix IoT Platform. Although Radix IoT employees participate in this forum from time to time, there is no guarantee of a response to anything posted here, nor can Radix IoT, LLC guarantee the accuracy of any information expressed or conveyed. Specific project questions from customers with active support contracts are asked to send requests to support@radixiot.com.
Mango V4
-
Hi
can someone please Help me
I have use the following codes:
<img src="/rest/v4/file-stores/default-filestores/Generator01.png">
<img src="/store/default/Generator01.png">
on dashboard designer to display image stored on store and unfortunately I am unable to do so can someone please help me. -
@paulolando91 where have you stored your images?
It makes the most sense if you store your images in the filestore and use the redt api url to obtain them.
If you don't want that and want it hard coded, you'll have to make the directory inside[Mango_home]/overrides/web/modules/mangoUI/web/store
Fox
-
Also @paulolando91 I see the REST URL you are using is wrong, there is no v4 API. The REST api is versioned differently to the Mango version. So its best to use the alias
latest
so that your URL would be something like:<img src="/rest/latest/file-stores/default-filestores/Generator01.png">
-
@terrypacker thank you