|
Lines 381-386
Link Here
|
| 381 |
}; |
381 |
}; |
| 382 |
|
382 |
|
| 383 |
if (is_grouping) { |
383 |
if (is_grouping) { |
|
|
384 |
dt_options["ordering"]= false; |
| 384 |
dt_options["rowGroup"] = { |
385 |
dt_options["rowGroup"] = { |
| 385 |
"dataSrc": function(row) { |
386 |
"dataSrc": function(row) { |
| 386 |
return get_display_status(row, true); |
387 |
return get_display_status(row, true); |
|
Lines 633-638
Link Here
|
| 633 |
searchable: false, |
634 |
searchable: false, |
| 634 |
orderable: false, |
635 |
orderable: false, |
| 635 |
render: function (data, type, row, meta) { |
636 |
render: function (data, type, row, meta) { |
|
|
637 |
if (type === 'sort' || type === 'filter' || type === 'type') { |
| 638 |
return get_display_status(row, true); |
| 639 |
} |
| 636 |
let nodes = ""; |
640 |
let nodes = ""; |
| 637 |
row._status.forEach( status => { |
641 |
row._status.forEach( status => { |
| 638 |
if ( status == 'checked_out' || status == 'local_use') { |
642 |
if ( status == 'checked_out' || status == 'local_use') { |
| 639 |
- |
|
|