I am currently working with a Backbone collection model that consists of sub-models as elements, along with views to edit it.
My objective is to have the syncing functionality "turned off" initially when the model is created, so that the back end is not called upon until the user clicks on a specific button. Once that button is clicked, I want to "turn on" the sync and trigger the save method on the main model to store the data in the database. After the model has been saved, it should function like a regular model.
The main purpose behind this approach is to ensure that data is only saved when the user is satisfied with what has been entered.