diff options
author | Frederick Muriuki Muriithi | 2025-03-17 13:30:47 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2025-03-17 13:30:47 -0500 |
commit | 4cabd6b7e29153789ecf90898ce08ed2148bf632 (patch) | |
tree | 5453036a93f5dacd1f7da05377db96899157066c | |
parent | 1cccd62479751e2fcac334e60c1ca3d1b16dc033 (diff) | |
download | gn-uploader-4cabd6b7e29153789ecf90898ce08ed2148bf632.tar.gz |
Add UI for bulk edit of data.
-rw-r--r-- | uploader/templates/phenotypes/view-dataset.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/uploader/templates/phenotypes/view-dataset.html b/uploader/templates/phenotypes/view-dataset.html index 1fe05d8..10fd428 100644 --- a/uploader/templates/phenotypes/view-dataset.html +++ b/uploader/templates/phenotypes/view-dataset.html @@ -140,6 +140,22 @@ className: "btn btn-info", titleAttr: "Click to deselect ANY selected record(s) in the table." }, + { + text: "Bulk Edit (Download Data)", + action: (event, dt, node, config) => { + alert("Not implemented yet!"); + }, + className: "btn btn-info", + titleAttr: "Click to download data for editing." + }, + { + text: "Bulk Edit (Upload Data)", + action: (event, dt, node, config) => { + alert("Not implemented yet!") + }, + className: "btn btn-info", + titleAttr: "Click to upload edited data you got by clicking the `Bulk Edit (Download Data)` button." + } ] }, top1Start: { |