Jump to content

Recommended Posts

Posted

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;

post-3156-0-74006600-1460377892_thumb.gi

  • Like 8
Posted

Should be part of core. Disabled by default, enabled optionally :P Same goes for InputfieldSelects :D
After all, how can we make them really required if one is always selected, even by default?

  • 8 years later...
Posted

Unfortunately does not work with ver. 3.x, is an upgrade planned? Another solution?

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...