You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
List sort - when enabled in settings, clicking on the header doesn't change the sorting of the results.
List search - Same thing, enabled but does nothing.
What can I do to troubleshoot?
I've added this custom script to get the search working again
//searchbar in list results
jQuery(document).ready(function($) {
$(document).on( 'keyup', '.search', function() {
var input, filter, table, tr, td, i, a, txtValue;
input = $("#sticky-list-wrapper_1 .search").val();
filter = input.toUpperCase();
table = document.getElementById("sticky-list-wrapper_1");
tr = table.getElementsByTagName("tr");
// Loop through all table rows
for (i = 0; i < tr.length; i++) {
td = tr[i].getElementsByTagName("td");
if (td) {
for (a = 0; a < td.length; a++) { // Loop through all tds and hide if necessesary
txtValue = td[a].textContent || td[a].innerText;
if (txtValue.toUpperCase().indexOf(filter) > -1) {
tr[i].style.display = "";
break;
} else {
tr[i].style.display = "none";
}
}
}
}
});
});
The text was updated successfully, but these errors were encountered:
List sort - when enabled in settings, clicking on the header doesn't change the sorting of the results.
List search - Same thing, enabled but does nothing.
What can I do to troubleshoot?
I've added this custom script to get the search working again
The text was updated successfully, but these errors were encountered: