How to create table without using datatable ?

How to create table without using datatable ?

Hello @Naufil,
Could you please describe your scenario in more detail, and elaborate on how the datatable should look like and what functionality is needed?

Hi @annazankevich, I want to display data like this one. Please look into html and json. it have nested data also.

html:

`




















Test1 Test2 Test3 Test5
Test4
Activity Start Time End Time
Set-up 06:00 08:25
`

Json:

{
id: “1”,
noOfBatches: “Test1”,
batches: [
“Test2”
],
testName: “Test3”,
instrumentName: “Test4”,
phamaCopia: “Test5”,
activities: [
{
id: “1”,
name: “Set-up”,
startTime: “06:00”,
endTime: “08:25”,
isChecked: true
}
]
},

Hi @annazankevich, Can you please look into this issue ?