Including multiple items inside the same row in dhtmlxgrid

In dhtmlxgrid, is it possible to have multiple items in the same row. I have attached an example. Please take a look at the second row in the screenshot. There are two items in the same row, that is actually 2 rows without the separation in between them. Is this achievable?


hello

there are a couple of techniques to achieve something similar but not exactly as you have requested.

you can use the group by function to group rows with the same characteristics.
docs.dhtmlx.com/doku.php?id=dhtmlxgrid:grouping

alternatively you can read through each row in the grid and style the values of individual cells any way you like - eg blank the 2nd and subsequent cells of the group column

in both cases you still have one row for each item not multiple items on the same row.

i hope this helps