- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-05-2020 12:09 AM
HI All,
below is my requirement
Asset Undertaking – For service request raised under Hardware category, there should be a checkbox with text stating ‘I have read and agree with Do’s and Don’ts for asset undertaking’.
The Do’s and Don’ts should be hyperlinked and popped up when user click it.
Solved! Go to Solution.
- Labels:
-
Personal Developer Instance

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-05-2020 12:36 AM
DHi Shilpi,
Follow below steps.
1. Create a simple widget : Disclaimer with below snippet in body html.
<div>
<input type="checkbox">Your Text <a href="www.google.com">To Do & not To Do</a><br>
</div>
2. Create a variable of type Macro & save it.
3. In the same variable that is created & saved you will find Type Specifications tab where you can specify widget (Disclaimer) created above.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-05-2020 03:50 AM
Hi Jaspal,
not working.
1. created a new record producer on incident table.
2. added a variable of type macro.
3. In variable , type specification added widget but when previewing record producer nothing is coming.
Please mention which i miss.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-05-2020 04:06 AM
Rather than previewing can you check the same on the portal directly.
By Preview I am guessing you are using the 'Try It' on the maintain item table. As since it involves angular it will work on portal not backend.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-05-2020 04:23 AM
thanks Jaspal its working but in url my instance url got appended
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-10-2020 03:33 PM
Just in case you didn't figure this out. You need to add https:// Had the same problem but it worked after doing this.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-10-2020 03:41 PM
Also add target="_blank" else it will take them to the url on the current tab. Would hate to have the users have to re-enter all the info.
<div>
<input type="checkbox">Pluralsight <a href="https://www.pluralsight.com" target="_blank"> Reference</a><br>
</div>