How to check initially one checkbox using select-checkbox
How to check initially one checkbox using select-checkbox
IT Marcaria
Posts: 13Questions: 5Answers: 1
in Select
Hello:
How to initially select a checkbox in this page?
https://datatables.net/extensions/select/examples/initialisation/checkbox.html
For example, when loading the page, a name is selected initially?
Thank you.
Carlos.
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
You could call
row().select()
ininitComplete
- that would ensure a specific row is selected. If you want more, you can userows().select()
,Colin
Very simple!
Thank you!