diff options
author | zsloan | 2022-09-06 19:35:14 +0000 |
---|---|---|
committer | zsloan | 2022-09-06 19:35:14 +0000 |
commit | e4d48672361ef303cf9812277b78fa9037a5bed8 (patch) | |
tree | e46299f8ffbf033e47d904908cc932411777304c | |
parent | d73d84aea30f8c7c8477af2a6bb9f98076311490 (diff) | |
download | genenetwork2-e4d48672361ef303cf9812277b78fa9037a5bed8.tar.gz |
Add data-trait-info to collections/view columnDefs
-rw-r--r-- | wqflask/wqflask/templates/collections/view.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/wqflask/templates/collections/view.html b/wqflask/wqflask/templates/collections/view.html index 4b63453e..b433afe3 100644 --- a/wqflask/wqflask/templates/collections/view.html +++ b/wqflask/wqflask/templates/collections/view.html @@ -140,7 +140,7 @@ 'orderDataType': "dom-checkbox", 'targets': 0, 'render': function(data) { - return '<input type="checkbox" name="searchResult" class="checkbox trait_checkbox" value="' + data.hmac + '">' + return '<input type="checkbox" name="searchResult" class="checkbox trait_checkbox" value="' + data.hmac + '" data-trait-info="' + data.trait_info_str + '">' } }, { |