I have a check box list which is binded from code behind. There can be at time one check box, two or more. I want to add mutual exclusion property on the same. Is there a way to do so. All the articles I am searching are creating static check box list. Tried adding Ajax extender but no help.
Below is my code so far:
<asp:CheckBoxList ID="LifeAccChk" runat="server" CssClass="itemRightAlign" />
<asp:MutuallyExclusiveCheckBoxExtender ID="MutuallyExclusiveCheckBoxExtender1" runat="server" Key="Life" TargetControlID="LifeAccChk">
</asp:MutuallyExclusiveCheckBoxExtender>