Jump to content

Uncheck checked radio buttons in admin


tpr
 Share

Recommended Posts

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
Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

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