Skip to main content
Solved

Add preview button in script.

  • October 25, 2023
  • 1 reply
  • 9 views

Forum|alt.badge.img+2

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?

Best answer by kuovonne

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()

1 reply

kuovonne
Forum|alt.badge.img+29
  • Brainy
  • Answer
  • October 25, 2023

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()