How to select multiple rows by checkbox without using CTRL?
How to select multiple rows by checkbox without using CTRL?
akomystery
Posts: 1Questions: 1Answers: 0
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