YiiBooster icon indicating copy to clipboard operation
YiiBooster copied to clipboard

Reset button does not reset Select2 fields

Open vercotux opened this issue 10 years ago • 0 comments

Within a form a

This piece of code solves the problem:

    $("form button[type=reset]").on("click",function(){
        if (form = $(this).closest("form")) {
            $(".select2-container",form).select2("data", null);
        }
    });

vercotux avatar Oct 07 '14 08:10 vercotux