Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Javascript from Content Pages

Status
Not open for further replies.

G12Consult

Programmer
May 12, 2016
77
0
0
AU
I am trying to run a date picker on a field within a content page.

On the master page in the head section I have the following code:
Code:
<script src="../assets/js/forms-bootstrap-datetimepicker.js"></script>
<asp:ContentPlaceHolder ID="head" runat="server">
    </asp:ContentPlaceHolder>]

In the content page I have the following code directly after the field:

Code:
<script>
     $(function () {
         $('[data-toggle="datepicker"]').datepicker({
             autoHide: true,
             zIndex: 2048,
         });
     });
 </script>

And in the code behind, page load event I have:

Code:
 Page.ClientScript.RegisterClientScriptInclude("forms-bootstrap-datetimepicker", ResolveUrl("../assets/js/forms-bootstrap-datetimepicker.js"))

When I render the page, and click on a field with a date-toggle "datepicker", it doesn't action the date picker

Have I missed something or doing something wrong?

Thanks
Andrew
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top