Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Checkbox not be changed #9

Closed
iproger opened this issue Dec 22, 2014 · 2 comments
Closed

Checkbox not be changed #9

iproger opened this issue Dec 22, 2014 · 2 comments
Labels

Comments

@iproger
Copy link

iproger commented Dec 22, 2014

Libs:
jQuery v2.1.1
Bootstrap v3.3.1

Options:

$("input[type=checkbox]").checkboxX({
    threeState: false,
    size: 'xs',
    inline: true
});

-- fix --

change: function () {
    .....
    $el.val(newVal);
    $el.trigger('change');

    if () {
        ...
    }
    .....
}

to

change: function () {
    .....

    if () {
        $el.val(newVal);
        $el.trigger('change');
    }
    .....
}
@kartik-v
Copy link
Owner

Check upgraded release v1.5.0.

@iproger
Copy link
Author

iproger commented Dec 28, 2014

all right

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants