This is my jquery datetimepicker i want to call this jquery in the image button which is placed nearby the textbox.how should do?

<script type="text/javascript">
 $(function() {
        $( "#<%= this.txtFrom.ClientID %>" ).datepicker({
            showOn: 'both',
            buttonImage: "Images/calendar.gif",
            buttonImageOnly: true,
            showmonth:true,
            autoSize: true,
            showAnim: 'slideDown',
            duration: 'fast'
        });
    });
</script>

this is my textbox and imagebutton.

  <asp:TextBox ID="txtFrom" MaxLength="10" runat="server" ToolTip="Enter From Date"></asp:TextBox>
                                    <asp:ImageButton ID="ImageButton1" runat="server" ImageUrl="~/Images/clock_add.gif" />

when i click this image button that jquery should call.

link|improve this question

50% accept rate
1  
datepicker supposed to do this automatic for you. check the documentation: jqueryui.com/demos/datepicker/#icon-trigger – Ricardo Arruda Sep 20 '11 at 14:28
@ric_bfa, why don't you post that as an answer? – William Niu Sep 20 '11 at 16:43
@William Niu, as you wish :) – Ricardo Arruda Sep 20 '11 at 16:47
Check the updated answer stackoverflow.com/questions/7484693/… – Harsh Baid Sep 21 '11 at 4:58
feedback

3 Answers

up vote 0 down vote accepted

Javascript:

<script type="text/javascript">
 $(function() {
        $("#<%= txtFrom.ClientID %>").datepicker({
            showmonth:true,
            autoSize: true,
            showAnim: 'slideDown',
            duration: 'fast'
        });

        $("#<%= ImageButton1.ClientID %>").click(function() {
          $("#<%= txtFrom.ClientID %>").datepicker('show');
        });
    });
</script>

Code:

<asp:TextBox ID="txtFrom" MaxLength="10" runat="server" ToolTip="Enter From Date">
</asp:TextBox>
<asp:ImageButton ID="ImageButton1" runat="server" ImageUrl="~/Images/clock_add.gif" />

Reference jquery forum

link|improve this answer
feedback

like i say in comment:

datepicker supposed to do this automatic for you. check the documentation:

jqueryui.com/demos/datepicker/#icon-trigger

link|improve this answer
Hum....I just noticed Thruimaran actually used it already...but just incorrectly.... – William Niu Sep 20 '11 at 16:52
datepicker itself create a button – Ricardo Arruda Sep 20 '11 at 16:54
feedback

You really have two choices here, which are precisely what ric_bfa and Harsh mentioned. From your code, I am guessing you were trying to use the icon-trigger built into the datepicker. I see two mistakes though:

  1. You included the wrong URL for your image.
  2. You displayed the image explicitly; datepicker takes care of that for you.

In summary, your code would look something like this:

    $( "#<%= this.txtFrom.ClientID %>" ).datepicker({
        showOn: 'both',
        buttonImage: "Images/clock_add.gif",
        buttonImageOnly: true,
        showmonth:true,
        autoSize: true,
        showAnim: 'slideDown',
        duration: 'fast'
    });

And the ASP.NET code:

<asp:TextBox ID="txtFrom" MaxLength="10" runat="server" ToolTip="Enter From Date"></asp:TextBox>
link|improve this answer
thanks willam i need when the image button onlick event how to implement this? – Thriumaran Sep 21 '11 at 3:42
Have you tried the solution I proposed? – William Niu Sep 21 '11 at 4:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.