jeudi 13 juin 2019

Bind checkbox values to parent-child model

I am developing application to bind the checkbox for role based menu. In that, I have parent-child check box and I want to bind the checkbox checked value from the input 1, 1.1, 1.2, 2, 3.

I have googled many things and implemented few too but there is no idea for parent child checked values selection.

HTML

<ul>
  <li><input class="check_box" type="checkbox" value="1">Upload
    <ul>
      <li><input class="check_box" type="checkbox" value="1">Large </li>
      <li><input class="check_box" type="checkbox" value="2">Small </li>
    </ul>
  </li>
  <li><input class="check_box" type="checkbox" value="2">Move</li>
  <li><input class="check_box" type="checkbox" value="3">Producs</li>
  <li><input class="check_box" type="checkbox" value="5">User</li>
</ul>

Binding Input

1, 1.1, 1.2, 2, 3

Expected Selection

enter image description here




Aucun commentaire:

Enregistrer un commentaire