Hi,
This is the error message I got when I'm trying to extend a'CheckBoxList1'
with 'MutuallyExclusiveCheckBoxExtender1' which I understand it is not
possible.
Extender control 'MutuallyExclusiveCheckBoxExtender1' cannot extend
'CheckBoxList1'. Extender controls of type
'AjaxControlToolkit.MutuallyExclusiveCheckBoxExtender' cannot extend
controls of type 'System.Web.UI.WebControls.CheckBoxList'
How can I make it possible?
Thank you in advance.
bruce barker - 13 Mar 2008 21:41 GMT
you have a couple options:
1) write your own extender that supports checkboxlist
2) use a repeater and checkboxes
3) create the checkbox extenders client side, and attach them to the
rendered checkboxes. (this wouLd be most of the code for #1)
-- bruce (sqlwork.com)
> Hi,
> This is the error message I got when I'm trying to extend a'CheckBoxList1'
[quoted text clipped - 8 lines]
> How can I make it possible?
> Thank you in advance.