Ignition Perspective Table - After editing a cell, I want the new value to be written to an OPC tag

Version 8.1.38

I have a Perspective table whose data is bound to a custom property on the view. This custom property itself pulls from a group of OPC tags being consolidated into an array of objects via a small script transform.

I want to set one column of my table to 'editable' and have the new value (inputted by user) be written to its corresponding OPC tag mentioned above -- but for all intents and purposes, the table data is a one-way binding. So I am thinking I have to add a script to the selection -> data property that contains system.tag.writeBlocking.

So at this point, I am wondering if I should set things up differently to make my life easier. Wondering if someone has already solved this issue or if there are any obvious recommendations. This is my first time messing around with tables and tag values together in Perspective.

Use the table's onEditCellCommit scripting function to write the new value of the cell to the corresponding tag. You'll need to provide some way for the cell to know which tag it is getting its original value from.