martenBoy Posted June 3, 2015 Share Posted June 3, 2015 (edited) how to display a datepicker in a text field inside a TPL file of module using the included JQuery library. Edited June 3, 2015 by martenBoy (see edit history) Link to comment Share on other sites More sharing options...
pishkus Posted June 4, 2015 Share Posted June 4, 2015 Are you talking about the front-end or the back-end? Link to comment Share on other sites More sharing options...
martenBoy Posted June 4, 2015 Author Share Posted June 4, 2015 the front end, a module displaying a form and having an datepicker as in one of its input. Link to comment Share on other sites More sharing options...
pishkus Posted June 4, 2015 Share Posted June 4, 2015 To the displayHeader hook add: $this->context->controller->addJqueryUI('ui.datepicker'); Then initialize the datepicker in your template with the following code: $(".your_input_class" ).datepicker(); Should do the trick. Link to comment Share on other sites More sharing options...
martenBoy Posted June 5, 2015 Author Share Posted June 5, 2015 To the displayHeader hook add: $this->context->controller->addJqueryUI('ui.datepicker'); Then initialize the datepicker in your template with the following code: $(".your_input_class" ).datepicker(); Should do the trick. Thanks you so much for your help, works greats !!!! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now