I have a dynamic list of choices, each represented by a checkbox. I also have a "select all" check box that selects them all. i am using a CheckGoup, CheckGroupSelector and Check and everything works great. now there is a new requirement to change the state on some other controls on the page when some of the checkboxes are selected.
I thought the simpliest is to Ajax-enable the Check but it seems its not possible. seems that Check does not allow you to add a AjaxFormComponentUpdatingBehavior to it.
is there any simple way to achieve this?
I was also thinking of using plain o'ld checkboxes and add javascript to do the select all. At least the checkbox can be ajax-enabled.
thoughts?