tpr Posted April 11, 2016 Share Posted April 11, 2016 Ok, another one for @netcarver // enable unchecking radio buttons // http://stackoverflow.com/questions/6191621/jquery-check-uncheck-radio-button-onclick#answer-13575528 $page->addHookAfter('render', function ($event) { if ($this->page->template != 'admin') return; $js = <<< HTML <script> $(document).ready(function(){ $("input:radio:checked").data("chk",true); $("input:radio").click(function(){ $("input[name='"+$(this).attr("name")+"']:radio").not(this).removeData("chk"); $(this).data("chk",!$(this).data("chk")); $(this).prop("checked",$(this).data("chk")); }); }); </script> HTML; 8 Link to comment Share on other sites More sharing options...
netcarver Posted April 11, 2016 Share Posted April 11, 2016 Like this? 6 Link to comment Share on other sites More sharing options...
tpr Posted April 11, 2016 Author Share Posted April 11, 2016 Liked that 4 Link to comment Share on other sites More sharing options...
szabesz Posted April 12, 2016 Share Posted April 12, 2016 Should be part of core. Disabled by default, enabled optionally Same goes for InputfieldSelects After all, how can we make them really required if one is always selected, even by default? Link to comment Share on other sites More sharing options...
mr-fan Posted April 12, 2016 Share Posted April 12, 2016 I like the way tpr and netcarver rule their game.... 3 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now