Download

Get Loom

Tables

LinkTable

A table where the first link found will be applied to the whole table row. Clicking anywhere in the row will send the browser to the location set in the first link in that row.

<script>
new loom.ui.tables.LinkTable($('mytable'));
</script>

MultiCheckbox

A table with a checkbox header that will select/unselect all checkboxes in the selected column.

To use any of these classes, just pass the table id as an argument:

<script>
$$('table.multicheckbox').each(function(t) {
     new loom.ui.tables.MultiCheckbox(t);
});      
</script>