diff options
author | Frederick Muriuki Muriithi | 2025-03-17 13:23:07 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2025-03-17 13:23:07 -0500 |
commit | 1cccd62479751e2fcac334e60c1ca3d1b16dc033 (patch) | |
tree | 9b641f435c1a3d3bdc871d6c05173649ad49f83d /uploader | |
parent | 5c6ccf6f176b5da4dd7ecde1e4d43d815521de98 (diff) | |
download | gn-uploader-1cccd62479751e2fcac334e60c1ca3d1b16dc033.tar.gz |
Add tooltips for the table buttons.
Diffstat (limited to 'uploader')
-rw-r--r-- | uploader/templates/phenotypes/view-dataset.html | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/uploader/templates/phenotypes/view-dataset.html b/uploader/templates/phenotypes/view-dataset.html index 2487faf..1fe05d8 100644 --- a/uploader/templates/phenotypes/view-dataset.html +++ b/uploader/templates/phenotypes/view-dataset.html @@ -130,8 +130,16 @@ layout: { top2: { buttons: [ - {extend: "selectAll", className: "btn btn-info"}, - {extend: "selectNone", className: "btn btn-info"} + { + extend: "selectAll", + className: "btn btn-info", + titleAttr: "Click to select ALL records in the table." + }, + { + extend: "selectNone", + className: "btn btn-info", + titleAttr: "Click to deselect ANY selected record(s) in the table." + }, ] }, top1Start: { |