Skonfigurowałem modalne okno dialogowe interfejsu użytkownika jQuery, które będzie wyświetlane, gdy użytkownik kliknie łącze. Istnieją dwa pola tekstowe (pokazuję tylko kod 1 dla zwięzłości) w tym znaczniku div okna dialogowego i zmienia się na pole tekstowe DatePicker interfejsu jQuery, które reaguje na fokus.
Problem polega na tym, że okno dialogowe interfejsu użytkownika jQuery („otwórz”) w jakiś sposób powoduje, że pierwsze pole tekstowe ma fokus, które następnie powoduje natychmiastowe otwarcie kalendarza DatePicker.
Dlatego szukam sposobu, aby zapobiec automatycznemu ustawianiu ostrości.
<div><a id="lnkAddReservation" href="#">Add reservation</a></div>
<div id="divNewReservation" style="display:none" title="Add reservation">
<table>
<tr>
<th><asp:Label AssociatedControlID="txtStartDate" runat="server" Text="Start date" /></th>
<td>
<asp:TextBox ID="txtStartDate" runat="server" CssClass="datepicker" />
</td>
</tr>
</table>
<div>
<asp:Button ID="btnAddReservation" runat="server" OnClick="btnAddReservation_Click" Text="Add reservation" />
</div>
</div>
<script type="text/javascript">
$(document).ready(function() {
var dlg = $('#divNewReservation');
$('.datepicker').datepicker({ duration: '' });
dlg.dialog({ autoOpen:false, modal: true, width:400 });
$('#lnkAddReservation').click(function() { dlg.dialog('open'); return false; });
dlg.parent().appendTo(jQuery("form:first"));
});
</script>