[UPDT] TEMPLATES: New page for employee work info complete table view

This commit is contained in:
Horilla
2024-06-18 14:30:02 +05:30
parent 538d3dab1e
commit 7a67310a66

View File

@@ -83,7 +83,7 @@
$("#employeeSearch").on("input", function() {
// Get the value entered in the search bar
var searchValue = $(this).val().toLowerCase();
// Iterate through each table row and hide/show based on the search value
$("table tbody tr").each(function() {
var employeeId = $(this).find("td:first-child").text().toLowerCase();
@@ -94,4 +94,4 @@
});
});
</script>