Am working with a medium sized file of about 500 notes. I use the table view to see and sort notes.
I added one new displayed attribute to the prototype for the notes.
Checked to verify that the note container on add action continued to pick up the amended prototype. All is well there.
In Outline view, all the notes now show the new attribute.
Problem: Table view does not pick up the new attribute.
Please advise.
The attributes used in TableView are the parent note’s TableAttributes. If the parent note has no TableAttributes, its DisplayedAttributes are used instead, and $TableAttributes is set to DispayedAttributes
.
So, if you’d like to add a new attribute to an existing table view, you need to change $TableAttributes. The easiest way to do this is to right-click or ctrl-click on the heading, and choose Edit Columns from the contextual menu.
1 Like
Thank you Mark.