Refresh Table View?

Hi Folks

I have a form in table view, and a button in the footer which runs an update on the table the form is based on. The form is in a tab BTW. After the update is complete I want to refresh the table on the form and I thought this was the way to do it:

forms.data_dictionary_work.controller.loadAllRecords()
			application.updateUI()

But that does nothing. I’ve tried to run that code in the function that does the update (which is a global function), and also in the calling function for the update,neither refresh the table.

Guess I’m missing the concept of how to update the screen from the actual table?

Appreciate any pointers to what I’m missing!

Got it

databaseManager.refreshRecordFromDatabase(fs,-1)

Thanks for looking

Ian