Skip to content
Snippets Groups Projects
Commit a3145e2a authored by Piotr Gawron's avatar Piotr Gawron
Browse files

filtering by visit number added

parent cb53c211
No related branches found
No related tags found
1 merge request!107Resolve "exceeded visits list & unfinished visits list"
......@@ -227,6 +227,13 @@ function createTable(params) {
$(tableElement).find('tfoot div[name="yes_no_filter"]').each(function () {
$(this).html('<select style="width:60px" ><option value selected="selected">---</option><option value="true">YES</option><option value="false">NO</option></select>');
});
$(tableElement).find('tfoot div[name="integer_filter"]').each(function () {
var options = '<option value selected="selected">---</option>';
for (var i = 1; i <= 8; i++) {
options += '<option value="' + i + '">' + i + '</option>';
}
$(this).html('<select style="width:60px" >' + options + '</select>');
});
$(tableElement).find('tfoot div[name="visit_filter"]').each(function () {
$(this).html('<select style="width:60px" >' +
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment