I get my datepicker control to bind fine to anything with a class of calendarTrigger on any of my pages, however on Popups (Of which use a Master Page and have the script files on it's master page) they don't bind to trigger datepicker UI elements.
Is there something I am missing ?
jQuery Code Held Within the UserInterfaceScripts.js
$(document).ready(function () {
$(".calendarTrigger").datepicker( {showAnim: 'fadeIn', changeMonth: true, changeYear: true, yearRange: '1950:2010' });
});
The Script Code Held within the Parent Master Page, as well as the popup Master Page
<script type="text/javascript" language="javascript" src="/scripts/jquery-1.4.2.min.js"></script>
<script type="text/javascript" language="javascript" src="/scripts/jquery-ui-1.8rc3.custom.min.js"></script>
<script type="text/javascript" language="javascript" src="/scripts/UserInterfaceScripts.js"></script>
The ASP Code on the Popup: (What you're looking for is the textbox with a CssClass of calendarControl) (Disregard the showCalendar Function old functionality that I'm replacing)
<asp:Table runat="server" CellSpacing="0">
<asp:TableRow>
<asp:TableCell ColumnSpan="2">
<asp:TextBox ID="searchText" runat="server" Width="500" style="color: #AAA;" Value="Enter the first few letters of the Test Name"
onClick="clickedOnce(this);"></asp:TextBox>
</asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell>
<asp:Table ID="Table1" runat="server" CellSpacing="0"><asp:TableRow><asp:TableCell>
Date
<br />
<asp:TextBox ID="testDateOther" runat="server" CssClass="calendarTrigger">
</asp:TextBox>
</asp:TableCell>
<asp:TableCell Width="20">
<br />
<a id="testDate" runat="server" href="Javascript:ShowCalendar('testDateOther',1900,'dd/mm/yyyy');">
<img id="Img5" src="/images/calendar.gif" class="phrCalender" runat="server"></a>
</asp:TableCell></asp:TableRow></asp:Table>
</asp:TableCell>
</asp:TableRow>
<asp:TableRow><asp:TableCell>
<br />
Test Result
<br />
<asp:RadioButtonList runat="server" ID="testResultOther" RepeatDirection="Horizontal">
<asp:ListItem Text="Normal" Value="yes" Selected="True"></asp:ListItem>
<asp:ListItem Text="Abnormal" Value="no"></asp:ListItem>
</asp:RadioButtonList>
</asp:TableCell>
</asp:TableRow>
<asp:TableRow>
<asp:TableCell ColumnSpan="2">
Notes
<br />
<asp:TextBox ID="testNoteOther" runat="server" TextMode="MultiLine" Rows="4" Width="500">
</asp:TextBox>
</asp:TableCell>
</asp:TableRow>
</asp:Table>
I'm pretty sure it's not a selector issue either because I created a textbox outside the whole Table Structure and it doesn't work either :/