Javascript from Content Pages
Javascript from Content Pages
(OP)
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:
In the content page I have the following code directly after the field:
And in the code behind, page load event I have:
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
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