that is an image of the table form that I want to make,
however, for the checkbox and time sections the rowspan that I provided doesn't work and
even seems to be skipped because the console.log() function that I use to see the results doesn't run at all
As you can see, the checkbox and time columns cannot join each other, is there a way to do this?
{
cellsAlign: "center",
label: "hasil",
align: "center",
dataField: "hasil",
rowSpan: (value, rowIndex, data) => {
console.log(value);
if (rowIndex % 2 === 0) {
return 2;
}
},
template: "checkBox",
editor: "checkBox"
}
This is an example of column code that uses checkboxes and cannot use rowspan
-
This topic was modified 1 year, 5 months ago by Daniz Erakan.