Save and validate form in multipart

Hello All,

Suppose I have the attributes for the model like this


  field_1

  field_2

  field_3

  field_4

  field_5

  field_6

  field_7

  field_8

  field_9

  field_10

Now as I am saving the form of this models then all the attributes are doing validation and save in a single form. But I want all the models to make validation and save part by part.Just like this


  field_1

  field_2

  field_3

  field_4

These should come in a single form and should be validate and save in the database.After that


  field_5

  field_6

  field_7

  field_8

These should also come in a single form and should be validate and save in the database.After that


  field_9

  field_10  

At the end this should also come in a single form and should be validate and save in the database.So how to do that.I searched the total yii documentation but not got any good result.Any help and suggestions will be highly appriciable.

Are all of these fields coming from one table?

No all they are coming from different models. I have used multimodel to show and save the attributes in a single view.Now I want the single form to be in multipart.

Have you looked into nested forms?