Place images inside HTML with ui_dashboard

i'm developing a list of people and i want to place images on the side of their names

the code is something like

<table border="1">
    <tr>
        <td>Name</td>
        <td>Picture</td>
         </tr>
    <tr>
        <td>Pedro Pascal</td>
        <td><<img src="C:\Users\dague\Pictures\tttt\image1.jpg" width="500" height="600">></td>
         </tr>
</table>

image

and it just returns this:

how i do that?
i dont think the ui_media would be a good node to use because it will be based on sql and i cant know how many data will be displayed

In settings.js there is a setting for httpStatic, you need to set this path to a location where you want to serve your images from. Then restart NR.

eg create a folder in your NR directory called images and set the path to './images' then use

<img  src="filename">

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.