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