date picker in repeater
Hi.. I so stumped on this problem.. Could'nt think anyway to get this problem solved.
I have a repeater to which I need to add date picker. Date picker is unable to identify the unique text name since the name is repeated through the table. Ex:
<asp:Repeater id="docresults" runat="server">
<input type=text readonly=True runat=server name=trythis id=one >
<A onmouseover="window.status='Date Picker';return true;" onmouseout="window.status='';return true;"
<br>
<input type=text readonly=True runat=server name=trythis id=two >
<A onmouseover="window.status='Date Picker';return true;" onmouseout="window.status='';return true;"
</repeater>
How does the javascript know when the date is picked it has to populate the text field on that row ? In above ex. id 'one' in above example is repeated throughout the table.
Any help, hint is much appreciated !!!
|