aboutsummaryrefslogtreecommitdiff
path: root/qc_app/static/js
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2022-08-04 04:52:58 +0300
committerFrederick Muriuki Muriithi2022-08-04 04:52:58 +0300
commitf895288441953ea1f52095ff421429d377cd37a1 (patch)
tree94bdafa8dc0e5ca2e793f1bce4d147eed016a28d /qc_app/static/js
parent3c47afe8092ff9f5bc152320e724c07973c1941a (diff)
downloadgn-uploader-f895288441953ea1f52095ff421429d377cd37a1.tar.gz
UX: Enable selecting radio by clicking anywhere on the row
Ease the selection of a radio button by allowing the user to click on any of the table cells that are in the same row as the radio button of concern.
Diffstat (limited to 'qc_app/static/js')
-rw-r--r--qc_app/static/js/select_platform.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/qc_app/static/js/select_platform.js b/qc_app/static/js/select_platform.js
index d7541fa..d78877e 100644
--- a/qc_app/static/js/select_platform.js
+++ b/qc_app/static/js/select_platform.js
@@ -57,3 +57,14 @@ function update_genechips(event) {
setup_genechips(genec[species_elt.value.toLowerCase()]);
}
}
+
+function select_row_radio(row) {
+ radio = row.getElementsByTagName(
+ "td")[0].getElementsByTagName(
+ "input")[0];
+ if(radio === undefined) {
+ return false;
+ }
+ radio.setAttribute("checked", "checked");
+ return true;
+}