Form results populate Dataview

I have a simple form that queries a database via API using a button click event to trigger a webix ajax request via php as follows:

webix.ajax().post("…/ajax/get_com.php?com_name="+objCom02).then(function(data){

It returns a json data that I want to dynamically display in a dataview table.

What’s the preferred method to take the data.text() results returned and populate the dataview table?