change cell value in table view event handler

In my table view in interface builder I have enabled the change cell value event handler and attached it to the appropriate script. In my table view I have set up no columns because they are generated dynamically.

Most of the columns are set up so that they can’t be edited but when I have one set up that can be edited, I can edit the cells alright but I get no notification in my script that the cell value has changed, nor can I find a way to determine when editing has finished.

I want to receive an event when I have finished editing a cell in the table view so that I can determine which cell has been modified so that I can update the database with the modified data.

Is there a way of doing this or does it just not work for dynamically generated columns.

Kevin

why not:

–put this after to have finished the data manipulation

updatadata(thedata)

–seperate function not inside your event for easy re-use
on updatadata(thedata)
–updata data source
–update table view

display dialog "finished changing: " & theVar
end updatadata