function (event) {
let input = event.domEvent.target;
let searchButton = parasql.app.getWidgetById('ID22922');
if (input.timer) clearTimeout(input.timer); // clear any previous timer
input.timer = setTimeout(function() {
searchButton.performClick(); // click the search button - changes focus
input.focus(); // refocus field
input.selectionStart = input.selectionEnd = input.value.length; // put cursor at end
}, 500);
}