Skip to main content
Nintex Community Menu Bar
Solved

Favicons on Cloud SmartForms

  • November 20, 2024
  • 5 replies
  • 100 views

Forum|alt.badge.img+3

Is anyone aware of a way to change the favicon on Cloud SmartForms? Is javascript and a CDN the best way?

The references/articles I’ve found are focused on-prem, so any insights would be appreciated.

Best answer by gemw18

Hi there,

 

Yes, there are a few ways to do this. One way is to upload it to “System\Controls\Image\Forms Image” SmartObject, and then use “/Runtime/Image.ashx?ImID=[myIconId]” as the href in the link mentioned above.

 

Hope this helps,

Gem

5 replies

Forum|alt.badge.img+6
  • Nintex Employee
  • December 2, 2024

Hi there,

 

Yes, the easiest way would be to inject the favicon using custom JS:
<script>
var link = '<link rel="icon" type="image/png" href="[myIcon]">';
$('head').append(link);
</script>

 

Hope this helps!

Gem


Forum|alt.badge.img+3
  • Author
  • Rookie
  • December 2, 2024

Thanks, Gem, that does help.

Is there any way to host that image on the report server anywhere? Upload it locally somehow? Or do I have to link to an external CDN?

Thanks again,


MillaZ
Nintex Employee
Forum|alt.badge.img+22
  • Nintex Employee
  • December 3, 2024

FYI ​@gemw18 


Forum|alt.badge.img+6
  • Nintex Employee
  • Answer
  • December 3, 2024

Hi there,

 

Yes, there are a few ways to do this. One way is to upload it to “System\Controls\Image\Forms Image” SmartObject, and then use “/Runtime/Image.ashx?ImID=[myIconId]” as the href in the link mentioned above.

 

Hope this helps,

Gem


Forum|alt.badge.img+3
  • Author
  • Rookie
  • December 4, 2024

Thank you, that appears to work as I had hoped!