That was the correct hint, I was able to trigger the search via:
$(oSearchField).trigger("onSearch");
I guess trigger() is a jQuery function, so I have to use $() around my SearchField object to use it.
Also, I have to trigger my custom method onSearch(), not the SearchField's event search.
Thanks very much!