Hi, I\’m having an issue that just started. I can type in the advanced search bar and the grid will display \’loading\’ but the data in the grid doesn\’t change, like the grid isn\’t being refreshed with the search terms. Any idea why this would be happening? The issue just started recently. Thanks for any help.
Most likely its due to some JS error. Check browser debug console for it and share screenshot / details here.
Please check the recent changes you did in the code.
Thanks for your quck response. Sorry for the delay in getting back to you.
The browser debug console does not report any errors upon loading the page or typing in the filter field.
The code in question is here: https://gist.github.com/BlaqFlagg/e6808be046023b2d4d0425c69835e7e5
I appreciate your assistance.
In your code try using ( ) for your condition. Perhaps last OR condition overrides every other where clause.
$g->select_command = "SELECT * FROM AdultInfo WHERE noelyear = $noelyear AND fraud = '' OR 'No'";
Should be:
$g->select_command = "SELECT * FROM AdultInfo WHERE noelyear = $noelyear AND (fraud = '' OR fraud = 'No')";
You can also set $g->debug_sql = true; OR $g->debug_search = true; to see what query is going through the database.

