Reset checkboxes in datalist on click of button that is outside of datalist using c#
|
|
|||||
|
|
|
In the eventhandler for the buttons OnClick event you'd loop trough each item in the datalist and find the checkbox and reset it. |
||
|
|
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:
|
||
