I am trying to attach a jQuery datepicker to a control in an asp:FormView. I am starting with the function
<script type='text/javascript'>
$(function(){
$("#<%= YourTextBox.ClientID %>").datepicker();
});
</script>
which works fine for controls in the base of the page. For controls inside a formview the TextBox isn't found. I have tried things like
frv_ServiceRequest.ClientID$SubmitDate.ClientID for this:
<asp:FormView ID="frv_ServiceRequest" runat="server&q ...
Go to the complete details ...