javascript - Can't Check Checkbox in jQuery Collapsable Element -


i'm using following code allow accordion effect on series of table rows.

        $('.accordian-body').on('show.bs.collapse', function () {             $(this).closest("table")                 .find(".collapse.in")                 .not(this)                 .collapse('toggle')         }); 

inside collapsed rows have series of checkboxes, allow options selected:

        <div style="float:right;margin-top:-5px;" class="checkbox check-primary checkbox-circle">            <input id="checkbox1" type="checkbox" checked="checked" value="1">            <label for="checkbox1"></label>          </div> 

these checkboxes cannot checked or unchecked, if not disabled, although mouse pointer chance indicate clickable element there.

how can re-enable checkboxes?

thanks!


Comments

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -