selector-checkbox and render tooltip not working together when using '_all' or individual target

selector-checkbox and render tooltip not working together when using '_all' or individual target

Sammy1Sammy1 Posts: 13Questions: 4Answers: 0

When using the following code, setting the 'targets' to anything other than 0 (such as '_all') will render the html row all overlapped. Anyway to fix this? I originally wanted to set the select column to width:25 and the other columns to be normal. I also wanted to display tooltips on every cell. Thanks!
paging: true,
"columns": [
{ "data": "select" },
{ "data": "tagName" },
{ "data": "description" },

            ],
            responsive: true,
            orderCellsTop: true,
            order: [[1, 'asc']],
            columnDefs: [{
                orderable: true,
                className: 'select-checkbox',
                targets: 0,
                  "render": function (data, type, full, meta) {
                      return type === 'display'? '<div title="' + data + '">' + data : data;
                         }   
            }],

Answers

This discussion has been closed.