Skip to content
Snippets Groups Projects
Commit 8572589c authored by Carlos Vega's avatar Carlos Vega
Browse files

added integer select that starts from 0

parent 1ea0e39d
No related branches found
No related tags found
1 merge request!250Virus visit column changes
...@@ -328,6 +328,14 @@ function createTable(params) { ...@@ -328,6 +328,14 @@ function createTable(params) {
$(this).html('<select style="width:60px" >' + options + '</select>'); $(this).html('<select style="width:60px" >' + options + '</select>');
}); });
$(tableElement).find('tfoot div[name="from_zero_integer_filter"]').each(function () {
var options = '<option value selected="selected">---</option>';
for (var i = 0; i < 8; i++) {
options += '<option value="' + i + '">' + i + '</option>';
}
$(this).html('<select style="width:60px" >' + options + '</select>');
});
$(tableElement).find('tfoot div[name="voucher_status_filter"]').each(function () { $(tableElement).find('tfoot div[name="voucher_status_filter"]').each(function () {
$(this).html('<select style="width:60px" ><option value selected="selected">---</option>' + $(this).html('<select style="width:60px" ><option value selected="selected">---</option>' +
'<option value="NEW">NEW</option>' + '<option value="NEW">NEW</option>' +
......
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