From e0ff591071d31727107d3fa0a013fad291b1f421 Mon Sep 17 00:00:00 2001 From: Piotr Gawron <piotr.gawron@uni.lu> Date: Tue, 5 Jun 2018 13:45:48 +0200 Subject: [PATCH] filtering by voucher type added --- smash/web/static/js/smash.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/smash/web/static/js/smash.js b/smash/web/static/js/smash.js index c39d3e98..dd85b76a 100644 --- a/smash/web/static/js/smash.js +++ b/smash/web/static/js/smash.js @@ -215,6 +215,7 @@ function createTable(params) { var flying_teams_url = params.flying_teams_url; var appointment_types_url = params.appointment_types_url; var subjects_url = params.subjects_url; + var voucher_types_url = params.voucher_types_url; var columnsDefinition = params.columns; tableElement.appendChild(createHeader(columnsDefinition)); @@ -274,6 +275,17 @@ function createTable(params) { }); }); + $(tableElement).find('tfoot div[name="voucher_type_filter"]').each(function () { + var obj = $(this); + obj.html('<select style="width:80px"><option value selected="selected">---</option></select>'); + var select = $('select', obj); + $.get(voucher_types_url, function (content) { + $.each(content.data, function (index, voucher_type) { + select.append('<option value="' + voucher_type.id + '">' + voucher_type.code + '</option>'); + }); + }); + }); + $(tableElement).find('tfoot div[name="flying_team_filter"]').each(function () { var obj = $(this); obj.html('<select style="width:80px"><option value selected="selected">---</option></select>'); -- GitLab