Is it possible to configure an input field so that when a user enters a url it w

Is it possible to configure an input field so that when a user enters a url it will be a clickable link?

OriginalPostID-141151

OriginalPostID-141151

  Discussion posts and replies are publicly visible

Parents
  • Hi Michael, one way you might be able to do this is by using the a!linkField() function.
    Ex. a!linkField(
    links:a!safeLink(
    label:"User's entered url",
    uri:ri!uri
    )
    )
    Where ri!uri is the entered url.

    Note that the user will have to enter the url in a text input field first and then you can dynamically show the link to the url using the expression above.
Reply
  • Hi Michael, one way you might be able to do this is by using the a!linkField() function.
    Ex. a!linkField(
    links:a!safeLink(
    label:"User's entered url",
    uri:ri!uri
    )
    )
    Where ri!uri is the entered url.

    Note that the user will have to enter the url in a text input field first and then you can dynamically show the link to the url using the expression above.
Children
No Data