Thank you all idea how to set focus on 1st filter in query. But all of the solutions have some issues.
None of them work if you are using a pulldown menu to launch the query. Some of them work once, (the 1st time I run it, it opens a new tab and the first filter has focus, but if I close the tab, and try again, nothing happens.)
With Jaymers help we guessed it was happening too early in the process so tied this to the databound event, so it looks like this:
var myGrid = widget;
myGrid.bind("dataBound", onGridDatabound);
function onGridDatabound(e) {
widget.element.find(".k-input").first().focus();
}
This will now run reliably if I call the query off of the top menu bar, but does not work if the query is part of a pulldown menu item.
Bruce