how to i parse my json array value into datatable column

Hi ,
i have a a Json data

Data = [
{“Array1”: [ 1,“1,some text” ],
“TrxNumber”: 123}
]

and i would like to get the value of Array1 and put into my datatable
biew below ,

var my_delivery_linelist = {
container:“box”,
view:“datatable”, id:“my_linelist” ,scroll:true ,
columns:[
{ id:“Array1”, header:“Array1”, width:80 },
{ id:“TrxNumber”, header:“TrxNumber”, width:80}
], width:80},
],
select:“row”,
};

when i check my webix.ui.datatable , it will pickup Array1 column
value as “1,some text”,how do i get Array1 column as 1 (using my data example above) ?

You need transform callback, before data add into table?
http://webix.com/snippet/d45c01d4

Yep, you can use data transformation or a column’s template ( if you plan to use filtering or sorting for that column, data transformation is the better choice )