How to add URL into system properties and refer it from html code ?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-24-2022 06:38 AM
How to add URL into system properties and refer it from html code ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-24-2022 06:40 AM
Hello
you can add it in value field as a string
But do you want to access that in widget HTML code?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-24-2022 06:41 AM
Yes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-24-2022 06:44 AM
When you come to your widget you can write this in server script
SERVER SCRIPT:
data.url = gs.getProperty('you_property_name');
HTML:
<a href={{data.url}}>Click Here</a>
Hope this helps
mARK MY ANSWER CORRECT IF THIS HELPS YOU

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-24-2022 07:14 AM
Thanks