find unique class name assigned to the filter textbox in the Grid by using browser “Inspect Element”.
For me it is ” .jqx-input “.
Write code like below in the Grid ‘bindingcomplete’
$('#jqxGrid').on('bindingcomplete', function () {
var ele = $("#" + this.id + " .jqx-input");
ele[0].focus();
});