DatePicker always get focus
I have a popupform where there are :
a textboxfor (readonly)
a AjaxDropdow
a DatePicker
when call the popup, DatePicker get always the focus so , I see the popup with DatePicker dialog opened,
I tried also to force the focus to textboxfor setting autofocus, but do same,
How can I do do don't show the DatePicker dialog at popup start ?
mtugnoli
asked
at 20 Feb 2014
Answers
-
in the next version this will be easier to modify/turn off, but atm you could write a js and put it in that popup to unfocus it or to focus something for example
<script>
$(function(){
$('#mydropdown').focus();
});
</script>Omuanswered at 20 Feb 2014