get data from dbllist

Hi,
I’d like to get the DblList data like in this snippet:
https://webix.com/snippet/b051d45c

I was waiting an array but I can only get the first item instead.
Is it a bug or do I made a mistake in order to retrieve the dbllist data ?

Hi @Christian,

You can get config data using $$(“dbllist”).config.data https://docs.webix.com/api__link__ui.dbllist_data_config.html
Or get data of the left list and of the right list using $$(‘dbllist’).$$(“left”).data.serialize() and $$(‘dbllist’).$$(“right”).data.serialize() accordingly

Hi @Hanna

As I load data from a json feed, config.data is not appropriate (it seems to me), so I retrieve data with the second method (left + right)

It works great, thank you.