MutuallyExclusiveCheckBoxExtender + CheckBoxList - AJAX

  • Thread starter Thread starter Tamer Ibrahim
  • Start date Start date
T

Tamer Ibrahim

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.
 
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)
 
Back
Top