@coomlata1 , this calls you back when a row is deleted. It's not exactly documented as far as I can see, but my feeling is it supposed to be used like this or at least can been with ui.ListDataSource which is what is automatically assigned when you create a table in the ui.designer. If you look at the data_source callbacks, you could also trap the other callbacks if you wanted or needed doing the same.
```
coding: utf-8
import ui
def tableview_delete(tableview, section, row):
# Called when the user confirms deletion of the given row.
print 'in delete', tableview, section, row
load
v = ui.load_view('Table.pyui')
tbl = v['tbl'] # get a ref to the table in the form
replace the tableview_delete function
tbl.data_source.tableview_delete = tableview_delete
v.present('sheet')```