Comment on page
url
To convert a value to a link
With this function, you can display a formula field as an URL field with an internet button. By clicking the button, the URL will open in your local browser.
.png?alt=media&token=076c0744-c26a-45f3-96e5-de0b32147e26)
By clicking on the globe, you open the website in your default browser
Adding an object, you can expand the URL with an automatic URL-encoded query component.
There is no validation if the passed content is a valid URL.
url(any)
url(any, JSON)
link
url(myURL)
To convert a value to a link1
url("https://ninox.com")
Result: The formula field will show the internet address of Ninox with an internet button. By clicking the button, the Ninox website should open. Fingers crossed.
url(myURL, myJSON)
To return a link with the content of the JSON object attached in a URL-compliant format.1
url("https://ninox.com",{Name: "Frank Böhmer"});
Result: https://ninox.com?Name=Frank%20B%C3%B6hmer
Last modified 1yr ago