{"id":3605,"date":"2016-01-19T13:46:43","date_gmt":"2016-01-19T13:46:43","guid":{"rendered":"http:\/\/www.icferno.gov.it\/?post_type=amm-trasparente&#038;p=3605"},"modified":"2016-01-19T13:46:43","modified_gmt":"2016-01-19T13:46:43","slug":"bandi-di-gara-e-contratti-2015","status":"publish","type":"amm-trasparente","link":"https:\/\/www.icferno.edu.it\/old\/amm-trasparente\/bandi-di-gara-e-contratti-2015\/","title":{"rendered":"Bandi di gara e contratti 2015"},"content":{"rendered":"<script type=\"text\/javascript\" src=\"https:\/\/www.icferno.edu.it\/old\/wp-content\/plugins\/avcp\/includes\/excellentexport.min.js\"><\/script>\r\n<div class=\"avcp-table-container\">\r\n    <table class=\"order-table table\" id=\"gare\" role=\"table\" aria-label=\"Tabella bandi di gara\">\r\n        <caption class=\"screen-reader-text\">\r\n            Elenco dei bandi di gara pubblicati        <\/caption>\r\n        <thead>\r\n            <tr>\r\n                <td colspan=\"6\" class=\"table-header-info\">\r\n                    <div class=\"table-title\">\r\n                        Bandi di gara &#8211; <strong>2015<\/strong>\r\n                    <\/div>\r\n                    <div class=\"table-search\">\r\n                        <label for=\"s\" class=\"screen-reader-text\">Cerca nei bandi:<\/label>\r\n                        <input type=\"search\" id=\"s\" class=\"light-table-filter\" \r\n                               data-table=\"order-table\" \r\n                               placeholder=\"Cerca...\" \r\n                               maxlength=\"100\" \r\n                               autocomplete=\"off\"\r\n                               aria-describedby=\"search-help\">\r\n                        <span id=\"search-help\" class=\"screen-reader-text\">\r\n                            Digita per filtrare i risultati della tabella                        <\/span>\r\n                    <\/div>\r\n                <\/td>\r\n            <\/tr>\r\n            <tr role=\"row\">\r\n                <th scope=\"col\" colspan=\"2\">Oggetto<\/th>\r\n                <th scope=\"col\">CIG<\/th>\r\n                <th scope=\"col\">Importo aggiudicazione<\/th>\r\n                <th scope=\"col\">Durata lavori<\/th>\r\n                <th scope=\"col\">Modalit\u00e0 affidamento<\/th>\r\n            <\/tr>\r\n        <\/thead>\r\n        <tbody role=\"rowgroup\">\r\n\r\n<tr role=\"row\"><td colspan=\"6\" role=\"gridcell\" style=\"text-align: center; padding: 20px;\">Nessun bando trovato per i criteri selezionati.<\/td><\/tr><\/tbody>\r\n<tfoot role=\"rowgroup\">\r\n    <tr role=\"row\">\r\n        <td colspan=\"6\" role=\"gridcell\" class=\"table-footer\"><div class=\"export-buttons\" style=\"float:right;\" role=\"group\" aria-label=\"Opzioni di esportazione\"><span class=\"export-label\">Scarica in:<\/span> <a href=\"https:\/\/www.icferno.edu.it\/old\/avcp\" target=\"_blank\" rel=\"noopener\" title=\"Scarica file XML\" class=\"export-btn\"><button type=\"button\" aria-label=\"Esporta in formato XML\">XML<\/button><\/a> <a download=\"Istituto-Comprensivo-Statale-Benedetto-Croce-gare2015.xls\" href=\"#\" onclick=\"return ExcellentExport.excel(this, 'gare', 'Gare');\" class=\"export-btn\"><button type=\"button\" aria-label=\"Esporta in formato Excel\">EXCEL<\/button><\/a> <a download=\"Istituto-Comprensivo-Statale-Benedetto-Croce-gare2015.csv\" href=\"#\" onclick=\"return ExcellentExport.csv(this, 'gare');\" class=\"export-btn\"><button type=\"button\" aria-label=\"Esporta in formato CSV\">CSV<\/button><\/a><\/div><\/td>\r\n    <\/tr>\r\n<\/tfoot>\r\n<\/table>\r\n<\/div><div class=\"clear\"><\/div>\r\n<script type=\"text\/javascript\">\r\n\/**\r\n * AVCP Table Filter\r\n * Provides client-side filtering functionality for the tender table\r\n *\/\r\n(function(document) {\r\n    'use strict';\r\n\r\n    var AVCPTableFilter = (function(Arr) {\r\n        var _input;\r\n\r\n        \/**\r\n         * Handle input events for table filtering\r\n         * @param {Event} e - The input event\r\n         *\/\r\n        function _onInputEvent(e) {\r\n            _input = e.target;\r\n            var tables = document.getElementsByClassName(_input.getAttribute('data-table'));\r\n            \r\n            if (!tables || tables.length === 0) {\r\n                return;\r\n            }\r\n            \r\n            Arr.forEach.call(tables, function(table) {\r\n                if (table.tBodies) {\r\n                    Arr.forEach.call(table.tBodies, function(tbody) {\r\n                        if (tbody.rows) {\r\n                            Arr.forEach.call(tbody.rows, _filter);\r\n                        }\r\n                    });\r\n                }\r\n            });\r\n        }\r\n\r\n        \/**\r\n         * Filter individual table rows based on search input\r\n         * @param {HTMLElement} row - The table row to filter\r\n         *\/\r\n        function _filter(row) {\r\n            if (!row || !row.textContent || !_input) {\r\n                return;\r\n            }\r\n            \r\n            var text = row.textContent.toLowerCase();\r\n            var val = _input.value.toLowerCase().trim();\r\n            \r\n            \/\/ Show all rows if search is empty\r\n            if (val === '') {\r\n                row.style.display = 'table-row';\r\n                return;\r\n            }\r\n            \r\n            \/\/ Hide\/show row based on text match\r\n            row.style.display = text.indexOf(val) === -1 ? 'none' : 'table-row';\r\n        }\r\n\r\n        \/**\r\n         * Initialize the table filter functionality\r\n         *\/\r\n        function _init() {\r\n            var inputs = document.getElementsByClassName('light-table-filter');\r\n            \r\n            if (!inputs || inputs.length === 0) {\r\n                return;\r\n            }\r\n            \r\n            Arr.forEach.call(inputs, function(input) {\r\n                if (input) {\r\n                    input.oninput = _onInputEvent;\r\n                    \/\/ Also handle paste events\r\n                    input.onpaste = function() {\r\n                        setTimeout(_onInputEvent.bind(null, {target: input}), 10);\r\n                    };\r\n                }\r\n            });\r\n        }\r\n\r\n        return {\r\n            init: _init\r\n        };\r\n    })(Array.prototype);\r\n\r\n    \/**\r\n     * Initialize when DOM is ready\r\n     *\/\r\n    document.addEventListener('readystatechange', function() {\r\n        if (document.readyState === 'complete') {\r\n            AVCPTableFilter.init();\r\n        }\r\n    });\r\n\r\n    \/\/ Fallback for older browsers\r\n    if (document.readyState === 'complete') {\r\n        AVCPTableFilter.init();\r\n    }\r\n\r\n})(document);\r\n<\/script>\r\n\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"menu_order":0,"template":"","tipologie":[66],"class_list":["post-3605","amm-trasparente","type-amm-trasparente","status-publish","hentry","tipologie-informazioni-sulle-singole-procedure-in-formato-tabellare"],"_links":{"self":[{"href":"https:\/\/www.icferno.edu.it\/old\/wp-json\/wp\/v2\/amm-trasparente\/3605"}],"collection":[{"href":"https:\/\/www.icferno.edu.it\/old\/wp-json\/wp\/v2\/amm-trasparente"}],"about":[{"href":"https:\/\/www.icferno.edu.it\/old\/wp-json\/wp\/v2\/types\/amm-trasparente"}],"author":[{"embeddable":true,"href":"https:\/\/www.icferno.edu.it\/old\/wp-json\/wp\/v2\/users\/1"}],"version-history":[{"count":1,"href":"https:\/\/www.icferno.edu.it\/old\/wp-json\/wp\/v2\/amm-trasparente\/3605\/revisions"}],"predecessor-version":[{"id":3606,"href":"https:\/\/www.icferno.edu.it\/old\/wp-json\/wp\/v2\/amm-trasparente\/3605\/revisions\/3606"}],"wp:attachment":[{"href":"https:\/\/www.icferno.edu.it\/old\/wp-json\/wp\/v2\/media?parent=3605"}],"wp:term":[{"taxonomy":"tipologie","embeddable":true,"href":"https:\/\/www.icferno.edu.it\/old\/wp-json\/wp\/v2\/tipologie?post=3605"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}