Following is the jQuery code to set focus on control after selecting the date from the jQuery Date Picker
jQuery.extend(jQuery.datepicker, { afterShow: function (event) {
jQuery.datepicker._getInst(event.target).dpDiv.css('z-index', 99999999);
}
});
jQuery(function(){
$("#divGameQuestionPanel [datepicker]").datepicker({
changeMonth: true,
changeYear: true,
yearRange: 'c-99:c+0',
showOn: "button",
buttonImage: calImageSrc,
buttonImageOnly: true,
dateFormat: 'dd/mm/yy',
onSelect: function (dateText, inst) { $(this).focus(); }
}).focus(function (event) {
jQuery.datepicker.afterShow(event);
});
});