I have a scenario like this
<asp:RadioButton ID="userActiveYesRadioButton" GroupName="activeGroup" Text="Yes"
runat="server" TabIndex="4" />
<asp:RadioButton ID="userActiveNoRadioButton" GroupName="activeGroup" Text="No"
runat="server" TabIndex="5" />
Since these radio buttons are in same group , tab index is not working. Is is possible to make tabindex work in this scenario ?
If I remove the group , they dont remain mutually exclusive.
Thanks in Advance
You can use an alternate,
Remove GroupName attribute and use javascript to make radio buttons mutually exclusive.
For Example
Call ‘toggle(this)’ on onClick event of radio buttons.
Note: ‘ctl00_ContentPlaceHolder1_’ is added to control id because of Content Place holder.