
francesco.stefanello
-
Formula help
Hi to all! i am trying to activate function through a formula to open specific record. this is the formula: html("<button class='customButton' onclick='openMaster()'>Open Master</button> <script>…
- Answered
-
Not Exit from a loop
Hi to all! i have got this loop on a formula: let images := response.result.images; let coverimageLink := ""; let foundImage := false; for i in images do if (i.type = "primary" or i.…
- Answered
-
Add elements to a choice field
Hi to all Is there a way to add, edit, delete elements in a choice Field through a formula? ex. Field 1 (formula field) I assign values in a formula: let x := "Napo" let y := "Orso" let z :…
-
Choice Field Trigger
Hi to all! I have got this structure: MasterSearchTable - fields: Choice Dynamic MusicBrainz ID MBIDsTable - fields: MBID Description as you can see the Choice Dynamic field is correctly connected to…
- Answered
-
join function to get an ordered output
Hi to all i have a formula: let data := text(response.result.relations); let bandData := parseJSON(data); let artists := ""; for i in bandData do let artistType := i.…
-
HTML formatting
Hi to all, with this formula: let AR := "Artists"; html("<h1 style='border: 0px solid darkslategray; padding: 11px; font-family: Helvetica; font-size: 10px; color: black; text-align: center; cursor:…
- Answered
-
import an Image from WEB
This procedure allows you to download an image from a public website and display it in an Image field: Usually, I go through the following steps: Image Field text field labelled in this example…
-
Trigger on a choice field (new)
i have a table with a button with this formula: let xCurrRec := ID; let xDiscogsRelease := 'Release Number'; let xtoken := 'Insert Your Discogs Token Here'; let url := "https://api.discogs.…
-
Trigger on a choice field
Hi to all I have a button perfectly functioning on a table with this formula: let x := dialog("Edit", "Edit Release", ["No", "Yes"]); if x = "Yes" then let xCurrRec := ID; let xReleaseNumber :…
- Answered