How to select multiple rows by checkbox without using CTRL?
How to select multiple rows by checkbox without using CTRL?
![akomystery](https://secure.gravatar.com/avatar/3e45ce7f7b67bf5b41236869a6f1200a/?default=https%3A%2F%2Fvanillicon.com%2F3e45ce7f7b67bf5b41236869a6f1200a_200.png&rating=g&size=120)
I am using below JS code to get Checkbox.
columnDefs: [ {
orderable: false,
className: 'select-checkbox',
targets: 0,
} ],
I want select multiple rows by checkbox without using CTRL?
Can you tell me solution.
This discussion has been closed.
Answers
Use the
select.style
option set to bemulti
- example here - it doesn't show checkbox selection, but the behaviour is identical if you enable checkboxes.Allan