I created a meta-bind button called ‘Add Notes’ to InsertIntoNote my ‘Attendees’ property as seen in the first image. It works fantastic!
This is how the code for the button looks currently…very basic right now. Note the span id just listing that property:
label: Add Notes
icon: ""
style: default
class: ""
cssStyle: ""
backgroundImage: ""
tooltip: ""
id: ""
hidden: false
actions:
- type: insertIntoNote
line: 75
value: |-
List of Attendees
<span id="Attendees"> `= this.Attendees`</span>
templater: false
However, my plan is to insert each one of these Attendees as a separate line so I can add more information about them after clicking the button…ideally in a table format as you see in the 2nd image.
Right now, it’s bringing in all attendees into one line. Is there any way to accomplish my goal?
It doesn’t necessarily need to be in a table format, but that would be ideal. As long as each Attendee property is on a separate line, that would be great.
I would prefer not having multiple properties for each Attendee. (i.e. Attendee 1:, Attendee 2:, etc.). I realize that would be the resolution for this, but I have way too many notes with this format already.
Thanks in advance, all!