Click here to Skip to main content
15,895,746 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Dear Friend
I have made an user control page on which I have taken a textbox to use jqury datepicker.I have used jquery plugin on asp page but date picker is not working.
So what is the problem?
Please anyone help me to use jquery datepicker in user control.

Thanks in advance
Akhilesh
Posted
Comments
Sergey Alexandrovich Kryukov 21-Feb-13 13:55pm    
"Not working" is not informative. My access to your hard drive, due to considerable volumes of snow, is somewhat limited. :-)
—SA
ZurdoDev 21-Feb-13 14:01pm    
If it worked on a page but now doesn't work on a user control it is usually because the client IDs are different when rendered in HTML. But, without any relevant code we can't help much.

1 solution

I don't know what kind of code you've written for datepicker. But, here I would like to suggest you to use JQuery with following snippet:
JavaScript
<script type="text/javascript">
  $(document).ready(
      function() {
          $('#input_test').datepicker(
              {
                  onClose: function(dateText, inst) {
                          alert("My date is: " + dateText);
                      }
              }
          );
      }
  );
</script>

And also, don't forget to include JQuery library file:
HTML
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.11/jquery-ui.min.js"></script>


--Amit
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900