im trying to use jquery from online to generate my datepicker. in my markup it is:
<asp:TextBox ID="PStart" runat="server"></asp:TextBox>
followed by
<script type = "text/javascript">
$(function () {
$("#PStart").datepicker({
showOn: "button",
buttonImage: "images/calendar.gif",
buttonImageOnly: true
});
});
</script>
and in my header of my site master i have included:
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<script type ="text/javascript" src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script type ="text/javascript" src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
one point to note is that this date picker is nested within an update panel which is only suposed to update after completeing the form and the submit/save button is clicked. i have set shildren as triggers to false and update mode to conditional but its not being displayed, far less for making a choice.