Added filter buttons in uptime view.
This commit is contained in:
parent
164498339d
commit
4159387133
1 changed files with 41 additions and 23 deletions
|
@ -15,6 +15,8 @@
|
||||||
<h2>Disponibilité des services</h2>
|
<h2>Disponibilité des services</h2>
|
||||||
<div style="margin-left: 0px; margin-bottom: 10px;">
|
<div style="margin-left: 0px; margin-bottom: 10px;">
|
||||||
<a id="allButton" class="button" href="#">Tout</a>
|
<a id="allButton" class="button" href="#">Tout</a>
|
||||||
|
<a href="#" id="alertButton" class="button">Alertes</a>
|
||||||
|
<a href="#" id="fixedButton" class="button">Rétablis</a>
|
||||||
<a id="nokButton" class="button" href="#">Indisponibles</a>
|
<a id="nokButton" class="button" href="#">Indisponibles</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -121,32 +123,48 @@ $(document).ready(function()
|
||||||
language: dataTableFrench
|
language: dataTableFrench
|
||||||
});
|
});
|
||||||
|
|
||||||
var showAll=1;
|
$("#allButton").click(function()
|
||||||
|
{
|
||||||
|
$.fn.dataTable.ext.search.pop();
|
||||||
|
table.draw();
|
||||||
|
});
|
||||||
|
|
||||||
$("#nokButton").click(function()
|
$("#nokButton").click(function()
|
||||||
{
|
{
|
||||||
if (showAll == 1)
|
$.fn.dataTable.ext.search.pop();
|
||||||
{
|
|
||||||
showAll=0;
|
|
||||||
$.fn.dataTable.ext.search.push(
|
$.fn.dataTable.ext.search.push(
|
||||||
function(settings, data, dataIndex)
|
function(settings, data, dataIndex)
|
||||||
{
|
{
|
||||||
return !table.cell(dataIndex, 23).data().includes('-ok');
|
var result;
|
||||||
|
return !(table.cell(dataIndex, 23).data().includes('status-ok') || table.cell(dataIndex, 23).data().includes('status-warning'));
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
table.draw();
|
table.draw();
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
$("#allButton").click(function()
|
$("#fixedButton").click(function()
|
||||||
{
|
{
|
||||||
if (showAll == 0)
|
|
||||||
{
|
|
||||||
showAll=1;
|
|
||||||
$.fn.dataTable.ext.search.pop();
|
$.fn.dataTable.ext.search.pop();
|
||||||
table.draw();
|
$.fn.dataTable.ext.search.push(
|
||||||
|
function(settings, data, dataIndex)
|
||||||
|
{
|
||||||
|
return table.cell(dataIndex, 23).data().includes('status-warning');
|
||||||
}
|
}
|
||||||
|
);
|
||||||
|
table.draw();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$("#alertButton").click(function()
|
||||||
|
{
|
||||||
|
$.fn.dataTable.ext.search.pop();
|
||||||
|
$.fn.dataTable.ext.search.push(
|
||||||
|
function(settings, data, dataIndex)
|
||||||
|
{
|
||||||
|
return !table.cell(dataIndex, 23).data().includes('status-ok');
|
||||||
|
}
|
||||||
|
);
|
||||||
|
table.draw();
|
||||||
|
});
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
|
|
Loading…
Reference in a new issue