function Filter() { this.showFilter = function(groupClass) { if (groupClass == null) { document.getElementById('controlcontainer').style.display = 'block'; jQuery('#controlcontainer').empty(); jQuery('#controlcontainer').append('Нет данных для вывода'); } else { document.getElementById('controlcontainer').style.display = 'block'; arr = groupClass.getMapMarkerNames(); count = 0; jQuery('#controlcontainer').empty(); jQuery('#controlcontainer').append(this.inputGenerator(arr['ALL'], groupClass.gType, 'Показать все') + "
"); for (var key in arr) { if (key != 'ALL') { jQuery('#controlcontainer').append(this.inputGenerator(arr[key], groupClass.gType, key) + "
"); } } } } this.hideFilter = function() { document.getElementById('controlcontainer').style.display = 'none'; } this.inputGenerator = function(checked, type, text) { check = ''; if (checked) { check = 'checked'; } return "" + text; } }