From 40b45c480758e1185b9c23c15ced402639034226 Mon Sep 17 00:00:00 2001 From: Gowtham M Date: Wed, 26 Mar 2025 12:55:26 +0530 Subject: [PATCH] GWM : Monthly pay info --- app/Views/monthlypayinputs.php | 30 ++++++++++++++++++------------ 1 file changed, 18 insertions(+), 12 deletions(-) diff --git a/app/Views/monthlypayinputs.php b/app/Views/monthlypayinputs.php index b97620a9..16575911 100755 --- a/app/Views/monthlypayinputs.php +++ b/app/Views/monthlypayinputs.php @@ -212,20 +212,18 @@ - -
- -
-
- -
-
- +
+ + - + + + + + + +
@@ -1389,6 +1387,14 @@ function showMessage(msg) { }, 3000); } +$("#searchInput").on("keyup", function () { + let value = $(this).val().toLowerCase(); // Convert input to lowercase for case-insensitive search + + $("#table-responsive tbody tr").filter(function () { + $(this).toggle($(this).text().toLowerCase().indexOf(value) > -1); + }); +}); +