This is a migrated thread and some comments may be shown as answers.

Multi select without Ctrl

1 Answer 254 Views
ListView
This is a migrated thread and some comments may be shown as answers.
Joseph Roberts
Top achievements
Rank 1
Joseph Roberts asked on 16 May 2012, 01:56 PM
Is there a way to enable multi select without having to hold the ctrl key?

Thanks,
Joe

1 Answer, 1 is accepted

Sort by
0
Accepted
Iliana Dyankova
Telerik team
answered on 16 May 2012, 05:24 PM
Hi Joe,

Such functionality is not supported out of the box, but you could achieve it using custom code. For example: 
$("#listView").delegate('.product','click',function(){
   $(this).toggleClass('k-state-selected');
});

Please notice that in this case you need to set to the Kendo UI ListView selectable: false property.

Regards,

Iliana Nikolova
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
Tags
ListView
Asked by
Joseph Roberts
Top achievements
Rank 1
Answers by
Iliana Dyankova
Telerik team
Share this question
or