Datatable multieselection without ctrl key

I had setup datatable option { multieselect: true }
but multieselection is possible only when the control key is pressed.
I want to be a multie selection with just a click.
Please tell me how. Thank you.

I referred to this snippet : Code Snippet

hi @chaeney, you can use multiselect:"touch": Code Snippet

1 Like

Thank you, dimitriy.
But I have one more problem.
I made check box, and I want to control the selection with the check box.
I want multiple selection even if I checked muliple row item.
Do you know how?
please read my code : Code Snippet

Hello @chaeney ,
select() has several parameters. If you want to preserve selection of old items you can add true as a second parameter:

if (state) {
        this.select(row, true);
}
1 Like

so perfect! thank you @MariyaDemy