Loading a single field json array into Datatable

I have form witch i am using a setValues to load data from a json object,

one of the fields of that object is a array, something like this
{ field1:[“value1”,“value2”,“value3”,“value4”,“value5” ]}

how can i go about to load that field automatically into a datatable, when the setvalues is used to load the json

create custom proto like that http://webix.com/snippet/81508800

i think my question was not clear,
if you see this example you can be clear on it
http://webix.com/snippet/c7e7a9c7

@rread a datatable without configuration won’t show anything. At least you need to add autoConfig:true to defaults in your formTable or provide your own config during the initialization, as for any other datatable:

http://webix.com/snippet/d073b1f5

thank you i always make these lousy mistakes where i forget one piece of configuration thank you