このjQuery日時ピッカーでは、スライドの方向をテキストボックスの右側に変更します。
//ソースページ:
<script type="text/javascript">
$(function () {
$(".datepicker").datepicker({ dateFormat: 'dd-mm-yy', minDate: 0,
changeMonth: true,
changeYear: true
}).attr('readonly', 'true');
});
</script>
<asp:TextBox ID="txtDtVisit" runat="server" CssClass="datepicker" Style="background-image: url('Calendar_Control/images/calendar.gif'); background-repeat: no-repeat; background-position: right;" Width="178px"></asp:TextBox>
デフォルトでは、テキストボックスの下部に表示されます。