Skip to content
Snippets Groups Projects

Virus visit column changes

Merged Carlos Vega requested to merge virus_visit_column_changes into master
1 file
+ 8
0
Compare changes
  • Side-by-side
  • Inline
@@ -328,6 +328,14 @@ function createTable(params) {
$(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 () {
$(this).html('<select style="width:60px" ><option value selected="selected">---</option>' +
'<option value="NEW">NEW</option>' +
Loading