How can I parse data to dataview in which data is having each row has different keys in json?

Please go through following snippet -

Here, JSON contains rows and having different keys in each row. So, how it is possible to parse such kind of data to dataview.

Note - There might be possibility of 10000 entries in JSON array.

https://snippet.webix.com/2zc8k3aa

Hello @pratikshadatir1,

Here, JSON contains rows and having different keys in each row. So, how it is possible to parse such kind of data to dataview.

Does the data provided in this sample follow the same logic across the board? For instance, does every data item have the same number of keys, and are the key positions the same for every data item?

If the number of keys and their positions are identical for every data item (bar their name), you can simply iterate over the object values, and use these values within the templating function: Code Snippet.

In case you have a more complex dataset, could you please specify the exact format for the incoming data (or the logic it follows)?