Can´t get values from Form

Hi, I did a form but when i want to get the value of the items i get and empty json

In the Onload of the body I have this code

webix.ui({
view: “scrollview”,
id: “verses”,
scroll: “y”,
body: {
margin: 30, rows: [

                        {
                            view: "form", elements: [
                                {
                                    view: "tabview",
                                    tabbar: { options: ["Datos Paciente", "Datos Patologia", "Notificante"] }, animate: false,
                                    cells: [
                                        {
                                            id: "Datos Paciente", rows: section1
                                        },
                                        {
                                            id: "Datos Patologia", rows: section2

                                        },
                                        {
                                            id: "Notificante", rows: section3

                                        }
                                    ]

                                }
                            ]

                        }
                    ]
                }
            });

but when i try to get the values of the form i get an empty json

Hey @Dalaz, the code you’ve shown should work just fine, provided that you’ve included the name field for each of your form elements. It is hard to tell from your code, since you haven’t included the section1/section2/section3 snippets.

Please take a look at this example, I’ve included some text inputs with a name property included, and the values are being collected as expected: https://snippet.webix.com/p89u4ovb.

If you do have names attached, could you please provide the full snippet so I would be able to help you out?