I am having a hard time getting the jquery datepicker to work with my DetailsView insert template. I have tried numorous ways of trying to get this to work and I have not been successful inside of the Template control. The code works fine outside of the DetailsView, but I need it inside. Here is my code:
<link href="jquery-ui-1.7.3.custom.min.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" language="javascript" src"jquery-ui-1.7.3.custom.min.js"></script>
<script type="text/javascript" language="javascript" src"jquery-1.6.2.min.js"></script>
<script type="text/javascript" language="javascript">
function pageLoad(sender, args)
{
$('.DateControl').datepicker();
};
</script>
<asp:templatefield HeaderText="Action Date" SortExpression="Action_Date">
<InsertItemTemplate>
<asp:Textbox runat="server" Text='<%# Bind("Action_Date") %>' id="textAction" CssClass="DateControl">
</asp:textBox>
</InsertItemTemplate>
</script>
Any help on what I could possibly doing wrong would be helpful. oh, and I am working with SharePoint and I will not be able to use the Ajax Controls for a datepicker.