Hi Pratura,
Thanks for using Syncfusion Products.
Yes, we can set focus to the filtersearch textbox by overwrite the popupShown function as shown below code:
<code>
<script>
$(function () {
var obj = $("#<%=selectCar.ClientID%>").data("ejDropDownList");
var srcFunction = obj._OnPopupHideShow;
obj._OnPopupHideShow = function (e) {
//This is the overwrite popupshown function and set focus to the filtersearch textbox in dropdown
srcFunction.call(this, e);
$(obj.inputSearch).focus();
}
});
</script>
</code>
It will set focus when the popup is opened. We have prepared the sample based on this and please find the sample from the following location:
Please let us know if you have further query.
Regards,
Kasithangam