waitdeliverable.ui.js 180 B

1234567
  1. window.getCellSpan = function(cell)
  2. {
  3. if(!['stage', 'required'].includes(cell.col.name) && cell.row.data.rowspan)
  4. {
  5. return {rowSpan: cell.row.data.rowspan};
  6. }
  7. }