How to use a checkbox in Materialize table
You did not have an id
for the checkbox and matching for
attribute for the label:
<input type="checkbox" id="myCheckbox" class="filled-in" />
<label for="myCheckbox"></label>
http://jsfiddle.net/xcmsLee9/1/
Try this:
<label>
<input type="checkbox" />
<span>*** Need text here ***</span>
</label>
Wrapping everything in a label
element with a span
right under it was the only way I was able to get my checkboxes to display.