data structure

data structure

GuillaumeCGuillaumeC Posts: 1Questions: 1Answers: 0

Hi
I have a javascript object send by node.js as my data source with the following format:

type: list
names:
0: id
1: name
2: class
3: group
....
values:
0:
type: "double"
names: null
values: […]
1:
type: "character"
names: null
values: […]
2:
type: "character"
names: null
values: […]
....

How I can simply adapt this object to be readable by datatables ?
column rendering ?

Thanks for your help ?

Answers

  • colincolin Posts: 15,158Questions: 1Answers: 2,587

    Could you paste the structure as-is, please, at least the first 2-3 records and the header, I'm not clear from your post what the true structure is.

    Colin

Sign In or Register to comment.