This topic is locked

Run search automatically after search panel selection

5/29/2014 1:51:15 PM
PHPRunner Tips and Tricks
Sergey Kornilov

Lets say you have a dropdown box on search panel and you want search to be ran automatically once user makes her selection (no need click the Search button).


Here is the code you can add to that List page Javascript OnLoad event to make this happen. Replace period with your field name.

$("select[name^='value_period']").change(function() {

$("#searchButton1").click();

});