How to get data from DataView?

Hi Webix Team,
How to get data and image from DataView? I just found the select method, but not get data. By the way, can I get the data of JSON format? Because I have to save them into mysql database. Do you have tips for me? Thanks

Hi,
you can use

getItem(id) of DataView for special element.

For all elements it’s possible to do by this way:

$$(viewId).data.pull

Example: https://snippet.webix.com/j7jr6roz

hi,
Thank you for the help.