Hi,
here a work around if you can edit the form_manager.js JavaScript file. The file is located is the subfolder "js" in your installation directory.
Find the following code (Line : 211 or nearby)
//filter the form when user type the search term
$("#filter_form_input").keyup(function(){
var search_term = $(this).val();
var max_search_result = 10;
and just replace only keyup with click
the changed code should look like this below!
//filter the form when user type the search term
$("#filter_form_input").click(function(){
var search_term = $(this).val();
var max_search_result = 10;
SAVE YOUR CHANGES!
That's' it!
Make sure to empty your browser cache to see the result.
What effect has this change:
Now you can enter your search string, the search start when you click with your mouse in the
search field.