vote up 0 vote down star

Reset checkboxes in datalist on click of button that is outside of datalist using c#

flag

0% accept rate
1  
Not a very detailed question. Are you talking about winforms? ASP.NET? – Drew Noakes Feb 19 at 10:20

2 Answers

vote up 0 vote down

In the eventhandler for the buttons OnClick event you'd loop trough each item in the datalist and find the checkbox and reset it.

link|flag
foreach (DataListItem item in DataList1) { } when i try like this it shows error. Plz provide me the source code. thanks – Yogini Feb 19 at 7:36
you should use foreach(DataListItem item in DataList1.Items){} – CKret Feb 19 at 7:43
vote up 0 vote down

What CKret said and also, I often find the Enumerable.OfType Method method very useful to do things like that. Looping through components of some type in a collection of some sort. For example, somewhere I do something like this:

foreach(CheckBox c in somePanel.Controls.OfType<CheckBox>())
{
    c.Checked = false;
}
link|flag
If I want to check whether atleast one checkbox is selected using javascript then how to do that? – Yogini Feb 19 at 9:03
javascript I don't know so well. In C# you can use the Any method like this: if(somePanel.Controls.OfType<CheckBox>().Any(ø => ø.Checked)) – Svish Feb 19 at 9:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.