Synchronized Settings
It is possible to synchronize settings between multiple buttons of the same action by using the sync
setting.
Synchronized settings require a checkbox setting to enable or disable the synchronization.
For example:
{
id: "checkboxId",
label: "Checkbox Label",
type: "checkbox"
},{
id: "syncedTextbox",
label: "Textbox Label",
type: "textbox",
sync: "checkboxId"
},{
id: "syncedValue",
label: "Setting Label",
type: "number"
}
So if the number setting is changed in button 1, it will also be changed for button 2.