Is it possible to show 2 rows of data table with one row of data?

I want 1 data row to be represented as 2 rows in datatable.

var data_set = [
{ id:1, title:“Title A”, year:1994, votes:678790, rating:9.2, rank:1, category:“Thriller”},
{ id:2, title:“Title B”, year:1972, votes:511495, rating:9.2, rank:2, category:“Crime”}
];

3

Hello @wood242,

Yes. that’s possible by using rowspans and colspans. Please, check out the snippet with example: Code Snippet

Thanks Your Reply.

But If data needs to be dynamically imported through a DB, the span form in the example looks difficult to use. Is there a better way?