What specifically does saveData() do?

What data does form.controller.saveData() act on. Does it save all data in Servoy to the database. Does it save data only on the table associated with form? Does it just save data in fields on a form?

If I have a relationship like tableA_to_tableB will formTableA.controller.saveData() save the data on table B? If I want to save this data do I need to make a form based on table B and use formTableB.controller.saveData()?

Thanks

John McCAnn

saveData saves everything.

Thanks. In the future you might consider making it an application property instead of a form property if it really saves everything in the application to the backend database.

John McCann