diff options
| author | Frederick Muriuki Muriithi | 2025-02-18 16:26:45 -0600 |
|---|---|---|
| committer | Frederick Muriuki Muriithi | 2025-02-18 16:26:45 -0600 |
| commit | afad2ae40f32ea677b77b28176ac07268f6fa594 (patch) | |
| tree | 871725fdd73573f41bfc3feaadfad82f0b3c74ab /uploader/static/js/populations.js | |
| parent | 75add682a8d63a30e947b6bcd8d2e5dfee06c297 (diff) | |
| download | gn-uploader-afad2ae40f32ea677b77b28176ac07268f6fa594.tar.gz | |
Add missing scripts. rework-species-selection
Diffstat (limited to 'uploader/static/js/populations.js')
| -rw-r--r-- | uploader/static/js/populations.js | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/uploader/static/js/populations.js b/uploader/static/js/populations.js new file mode 100644 index 0000000..ded9b10 --- /dev/null +++ b/uploader/static/js/populations.js @@ -0,0 +1,40 @@ +var populationDataTable = (populationdata) => { + var lengthMenu = [10, 25, 50, 100, 1000]; + if(populationdata.length > 1000) { + lengthMenu.push(populationdata.length) + } + $("#tbl-select-population").DataTable({ + responsive: true, + lengthMenu: lengthMenu, + language: { + processing: "Processing… Please wait.", + loadingRecords: "Loading population — Please wait.", + lengthMenu: "Show _MENU_ populations", + info: "Showing _START_ to _END_ of _TOTAL_ populations" + }, + data: populationdata, + columns: [ + { + data: (apopulation) => { + return `<input type="radio" name="population_id"` + + `id="rdo_population_id_${apopulation.InbredSetId}" ` + + `value="${apopulation.InbredSetId}">`; + } + }, + { + data: (apopulation) => { + return `<label for="rdo_population_id_${apopulation.InbredSetId}" ` + + `class="control-label" style="font-weight: 1;">` + + `${apopulation.FullName} (${apopulation.InbredSetName})` + + `</label>`; + } + } + ] + }); +}; + + +$(() => { + populationDataTable(JSON.parse( + $("#tbl-select-population").attr("data-populations-list"))); +}); |
