I've got some radiobuttons in my webform, they are all part of the same group
<asp:RadioButton runat="server" ID="rbMonFriWkends" GroupName="HoursWkSelect" CssClass="ChbxToggler TogglesChbx-chbxToToggle VisibleToggle VisiToggles-divToToggle" />
I've got some JQuery handlers:
$(".ChbxToggler").click(function(){
//Logic that pulls out any css classes that should be toggled and toggles 'em.
return false;//This is part of the problem
});
$(".VisibleToggle").click(function(){
//Logic that pulls out any css classes that should be toggled and toggles 'em.
return false;//This is part of the problem
});
It all works but for one thing - the selection (ie the radiobutton which actually gets checked) never changes.
ie. if I click Radiobutton#1 everything toggles as it should but the selected radiobutton remains the one that was selected before the handler(s) run. So the selection remains the same but the GUI changes as it should.
Can someone help or at least explain what I'm doing wrong? Happy to post more code if it'll help ...