- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2023 05:50 AM
Hi,
I created report for shipped active RITM's and i want the report to have clickable link to the tracking page.
the RITM form has string field for the tracking code
i created string label with default value for the tracking page and HTML function field in RITM table that uses glide function to combine the tracking page and the tracking code from RITM form. the output looks fine, but it is not clickable.
the track field has correct value but i would like this to direct to the page when i click it.
or is there perhaps easier (or correct) way to do this? 🙂
-jori
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2023 07:26 AM
Url function field with function definition glidefunction:concat(u_tacking_link,u_tracking_code) created wanted result
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2023 03:33 AM
im trying to add default value to the html field that would contain the string field values u_tracking_link that contains the correct URL to the postal courier tracking page + u_tracking_code that our agent adds to RITM form when order has been made. The combined URL is correct when the output is generated in string field, but it does not show any value in HTML field.
HTML field / default value:
<a href="https://${current.u_tracking_link}${current.u_tracking_code}">Track</a>
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2023 07:26 AM
Url function field with function definition glidefunction:concat(u_tacking_link,u_tracking_code) created wanted result