How to get data from nested array into DataTable?

How to get data from nested array into DataTable?

RameezJavedRameezJaved Posts: 1Questions: 1Answers: 0

Can anybody tell me how can i populate DataTable from nested array, I'm having issue with it about mData.
here is the array i'm having like
Diagnosis: "T07.XXXA"
OrderID: "2002"
SpecimenTyp: "Orel"
TStatistics: {Status: "Active", CollectionDate: "10/3/2019 12:00:00 AM", Notes: "abc"}
TestCode: "D804120022"
TestID: "2002"
TestName: "CBC"

I want to populate the table as shown here.
Thank you.

Answers

  • colincolin Posts: 15,144Questions: 1Answers: 2,586

    Hi @RameezJaved ,

    That wouldn't be possible, as your spanning additional rows. One thing you could consider is putting that information into child rows, and have them always opened up.

    Cheers,

    Colin

This discussion has been closed.