Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Checking if CheckBoxList has any selected values

I would like to know the fastest/easiest way to check if a CheckBoxList control has any checked items or not, I'm talking about an entire checkbox list as a whole, not a single checkbox.

like image 409
Viredae Avatar asked Aug 15 '10 09:08

Viredae


4 Answers

The Linq extension method is neat, but you can also just check the SelectedIndex:

bool isAnySelected = CheckBoxList1.SelectedIndex != -1;

If nothing is checked, the SelectedIndex is -1.

like image 87
Eyeball Avatar answered Nov 04 '22 10:11

Eyeball


The selected answer is great but now you can simply modify the code by adding OfType function. check the following:

bool isAnySelected = checkBoxList.Items.OfType<ListItem>().Any(i => 
i.Selected);

I hope this helps.

like image 22
Gamil Silvergeek Avatar answered Nov 04 '22 11:11

Gamil Silvergeek


This one should help:

bool isAnySelected = checkBoxList.Items.Any(i => i.Selected);

.Any is a Linq extension method, so you will need the System.Linq or .System.Linq.Extensions reference (can't remember which) in your code-behind.

like image 7
Łukasz W. Avatar answered Nov 04 '22 11:11

Łukasz W.


For anyone coming here 5 years after the selected answer, the Items collection is not enumerable therefore .Any(...) will not work. You can, however, do the following:

If cblCheckboxList.Items.Cast(Of ListItem).Any(Function(x) x.Selected) then...
like image 2
MetalPhoenix Avatar answered Nov 04 '22 12:11

MetalPhoenix