check box with hyperlink

Shilpi Sharma2
Tera Contributor

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. 

1 ACCEPTED SOLUTION

Jaspal Singh
Mega Patron
Mega Patron

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.

View solution in original post

13 REPLIES 13

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.

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.

thanks Jaspal its working but in url my instance url got appended

Just in case you didn't figure this out. You need to add https://  Had the same problem but it worked after doing this.

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>