Add Hyperlink to text

1
Hello, I want to add an hyperlink to my “terms and condition” text. By clicking a specific text i want to open a new page. What the best way to do that?
asked
6 answers
2

You can use CustomString widget from Mendix appstore and select a Microflow to return a String with a string something like this

'some text '+ <a href="www.mendix.com”> link text </a>+ 'some text2'

 

Enable render as HTML in CustomString widget properites, would that work for you?

answered
2

Hi, 

You might have created an action button for Terms And Conditions and inside that you will be calling respected page or microflow whatever required. So in the action button, select the render mode as Link. Give a name to action button as ‘Terms & Conditions’ . Check the below

Hope it might be useful!

answered
1

You would usually have to use a Link button to add a hyperlink.

If you have a lot of custom text, you can use the HTMLSnippet widget and embed the link directly in the HTML.

answered
1

You don’t need to add anything to a text field. 
Just put a link button and type text in it → Link button = hyperlink
 

answered
0

You can use the widget “Link button” for this. Its by default in Studio Pro

answered
0

Thank you all for fast response. 
How can i add the link button to a text field? (I am quite new in mendix).

answered