select extension work with rowGroup?

select extension work with rowGroup?

zgoforthzgoforth Posts: 493Questions: 98Answers: 2

Link to test case: https://jsfiddle.net/BeerusDev/5nLg4bt0/134/

Hello,

I am trying to use the select option for the user to be able to click on their Task, and mark it as "Completed Task". Once the user selects the checkbox, it will select the row, then move it to another tabbed DataTable as Completed Task.

I initialized the columnDefs and the select options, but no checkboxes appeared?

  columnDefs: [ {
            orderable: false,
            className: 'select-checkbox',
            targets:   0
        } ],
        select: {
            style:    'os',
            selector: 'td:first-child'
        },

Answers

  • kthorngrenkthorngren Posts: 20,299Questions: 26Answers: 4,769

    It doesn't look like you installed the select.css. Use the Download Builder to get the appropriate files for the bootstrap framework you are using.

    Kevin

Sign In or Register to comment.