1

Anybody knows if is Ratchet http://goratchet.com/ has possibility to create a list of checkbox to select item? Documentation shows only technique to make a simple list as this:

<ul class="table-view">
<li class="table-view-cell">Item 1 <span class="badge">4</span></li>
<li class="table-view-cell">Item 2 <span class="badge">1</span></li>
<li class="table-view-cell">Item 3 <span class="badge">5</span></li>
</ul>
Albzi
  • 15,431
  • 6
  • 46
  • 63
Stefano Maglione
  • 3,946
  • 11
  • 49
  • 96

1 Answers1

1

This should be pretty straight forward...

jsFiddle

<div class="content">
    <ul class="table-view">
      <li class="table-view-cell">
          <input type="checkbox" /> Check Box
      </li>
      <li class="table-view-cell">
          <input type="checkbox" /> Check Box
      </li>
      <li class="table-view-cell">
          <input type="checkbox" /> Check Box
      </li>
      <li class="table-view-cell">
          <input type="checkbox" /> Check Box
      </li>
    </ul>
</div>
Schmalzy
  • 17,044
  • 7
  • 46
  • 47