fix filter bug
This commit is contained in:
parent
568c5b020d
commit
7ec20caf23
@ -91,7 +91,7 @@ TEMPLATE = """
|
|||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block script %}
|
{% block script %}
|
||||||
var content = document.getElementById('content');
|
var table = document.getElementById('table');
|
||||||
var filter = document.getElementById('filter');
|
var filter = document.getElementById('filter');
|
||||||
var filterVal = filter.value.toUpperCase();
|
var filterVal = filter.value.toUpperCase();
|
||||||
|
|
||||||
@ -155,10 +155,10 @@ TEMPLATE = """
|
|||||||
tr.className = colorClass;
|
tr.className = colorClass;
|
||||||
|
|
||||||
if (filterVal.length > 0 && value.toUpperCase().indexOf(filterVal) == -1) {
|
if (filterVal.length > 0 && value.toUpperCase().indexOf(filterVal) == -1) {
|
||||||
tr.style.visibility = "collapse";
|
tr.style.display = "none";
|
||||||
}
|
}
|
||||||
|
|
||||||
content.appendChild(tr);
|
table.appendChild(tr);
|
||||||
});
|
});
|
||||||
position = messages.length - 1;
|
position = messages.length - 1;
|
||||||
}
|
}
|
||||||
@ -194,25 +194,15 @@ TEMPLATE = """
|
|||||||
|
|
||||||
function doneTyping() {
|
function doneTyping() {
|
||||||
document.body.style.cursor = 'progress';
|
document.body.style.cursor = 'progress';
|
||||||
var table, tr, tds, td, i, txtValue;
|
var tr, tds, td, i, txtValue;
|
||||||
filterVal = filter.value.toUpperCase();
|
filterVal = filter.value.toUpperCase();
|
||||||
table = document.getElementById("content");
|
|
||||||
tr = table.getElementsByTagName("tr");
|
tr = table.getElementsByTagName("tr");
|
||||||
for (i = 0; i < tr.length; i++) {
|
for (i = 1; i < tr.length; i++) {
|
||||||
tds = tr[i].getElementsByTagName("td");
|
txtValue = tr[i].textContent || tr[i].innerText;
|
||||||
if (tds) {
|
if (txtValue.toUpperCase().indexOf(filterVal) > -1) {
|
||||||
for (l = 0; l < tds.length; l++) {
|
tr[i].style.display = "table-row";
|
||||||
td = tds[l];
|
} else {
|
||||||
if (td) {
|
tr[i].style.display = "none";
|
||||||
txtValue = td.textContent || td.innerText;
|
|
||||||
if (txtValue.toUpperCase().indexOf(filterVal) > -1) {
|
|
||||||
tr[i].style.visibility = "visible";
|
|
||||||
break;
|
|
||||||
} else {
|
|
||||||
tr[i].style.visibility = "collapse";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
document.body.style.cursor = 'default';
|
document.body.style.cursor = 'default';
|
||||||
@ -226,7 +216,7 @@ TEMPLATE = """
|
|||||||
<span><input checked type="checkbox" id="autoscroll"></span>
|
<span><input checked type="checkbox" id="autoscroll"></span>
|
||||||
<span><label for="autoscroll"> Autoscroll to bottom</label><br></span>
|
<span><label for="autoscroll"> Autoscroll to bottom</label><br></span>
|
||||||
</div>
|
</div>
|
||||||
<table id="content">
|
<table id="table">
|
||||||
<thead>
|
<thead>
|
||||||
<th>
|
<th>
|
||||||
Time
|
Time
|
||||||
|
Loading…
x
Reference in New Issue
Block a user