cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Did you know you can set a signature that will be added to all your posts? Set it here! X

Add and Update asset image using file upload and image widget

ranjank
14-Alexandrite

Add and Update asset image using file upload and image widget

Suppose I want to add image to any asset (while its onboarding) and I want to use File upload widget and Image widget then what is the process to achieve this functionality while onboarding as well as updating any asset image?

 

Please help with the logic.

 

Thanks in advance.

1 ACCEPTED SOLUTION

Accepted Solutions
Ashritha
13-Aquamarine
(To:ranjank)

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 :

-Upload Image using file upload widget

-Use Service :

var Content = Things["SystemRepository"].LoadImage({
path: undefined /* STRING */ 
});

path: complete path of image

 

-Use Value Display widget :

  1. Bind output of above service to value display
  2. Click on Render and State
  3. Change the Renderer to Image in the drop down
  4. Done and Save

View solution in original post

2 REPLIES 2
Ashritha
13-Aquamarine
(To:ranjank)

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 :

-Upload Image using file upload widget

-Use Service :

var Content = Things["SystemRepository"].LoadImage({
path: undefined /* STRING */ 
});

path: complete path of image

 

-Use Value Display widget :

  1. Bind output of above service to value display
  2. Click on Render and State
  3. Change the Renderer to Image in the drop down
  4. Done and Save
anarwal
12-Amethyst
(To:ranjank)

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.

Top Tags