Hi all,
I have a NSTableView binded to core data. I have another NSTableView, currently not binded to anything ( but that can change if need be).
When a press a button, I want the currently selected Row in the first table to be copied (but not removed) to the second table.
e.g.
Before:
First Table
Column1 | Column2 | Column3
Person | Place | Time
Second Table
Column1 | Column2 | Column3
| |
After:
Column1 | Column2 | Column3
Person | Place | Time
Second Table
Column1 | Column2 | Column3
Person | Place | Time
How would I go about doing this?
Thanks!