Combining 2 or more form's values

Hello Everyone,
Is there any method in webix that i can combine 2 or more form’s values and get a single json object? or i have to parse each form’s value and create the final object myself?

Thank you in advance.

The form has the getValues() method: http://webix.com/snippet/40b0c21c

Hello @Listopad,
Thank you for the reply, What if i have a window that has several tabs and in each tab there is a form. in the back end there is a single end point for saving the data of values of the forms at once. I want to combine the values of each form in each tab and send it to back end as a single json object. is this scenario possible in webix?

Thank you.

getValues() will return the data from the particular form, so if you need to gather the data from several forms, you need to combine results manually.

On the other hand, the form can contain a multiview.
Please check the last part of this paragraph and the sample.