diff options
author | zsloan | 2021-06-07 21:13:13 +0000 |
---|---|---|
committer | zsloan | 2021-06-07 21:13:13 +0000 |
commit | 0522b23c9c0ada10df4afdc9be2251cd680b4356 (patch) | |
tree | bec5b8c1df50b1c5f0c83e5fa01075d6019388ca | |
parent | 5ff2fa8c471caa833df50421922eed9828563957 (diff) | |
download | genenetwork2-0522b23c9c0ada10df4afdc9be2251cd680b4356.tar.gz |
Define the table and then do the_table.draw() to fix issue where column headers sometimes aren't aligned with rows + change width of checkbox column
-rw-r--r-- | wqflask/wqflask/templates/gsearch_gene.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/wqflask/wqflask/templates/gsearch_gene.html b/wqflask/wqflask/templates/gsearch_gene.html index 8ff36c1b..e951c0b1 100644 --- a/wqflask/wqflask/templates/gsearch_gene.html +++ b/wqflask/wqflask/templates/gsearch_gene.html @@ -107,7 +107,7 @@ } } - $('#trait_table').DataTable( { + var the_table = $('#trait_table').DataTable( { 'drawCallback': function( settings ) { $('#trait_table tr').click(function(event) { if (event.target.type !== 'checkbox' && event.target.tagName.toLowerCase() !== 'a') { @@ -158,7 +158,7 @@ 'columns': [ { 'orderDataType': "dom-checkbox", - 'width': "25px", + 'width': "10px", 'data': null, 'render': function(data, type, row, meta) { return '<input type="checkbox" name="searchResult" class="trait_checkbox checkbox" value="' + data.hmac + '">' @@ -291,6 +291,8 @@ '</tr>' + '</tfoot>' ); + + the_table.draw(); }); </script> |