Help

Add preview button in script.

Solved
Jump to Solution
1519 1
cancel
Showing results for 
Search instead for 
Did you mean: 
Thrusty_Hunter
4 - Data Explorer
4 - Data Explorer

Hi, I'm copying contacts from one table and pasting them into another table. I'm looking for a preview of these contacts on a button click. Is there a way to add a button in the script?

1 Solution

Accepted Solutions
kuovonne
18 - Pluto
18 - Pluto

Scripting buttons are created using input.buttonsAsync(). You still have to code what you want to happen when a button is chosen. 

Scripting doesn’t allow for much interaction. When I want a preview of data for multiple records, I usually build an array of the data and show it using output.table()

See Solution in Thread

1 Reply 1
kuovonne
18 - Pluto
18 - Pluto

Scripting buttons are created using input.buttonsAsync(). You still have to code what you want to happen when a button is chosen. 

Scripting doesn’t allow for much interaction. When I want a preview of data for multiple records, I usually build an array of the data and show it using output.table()