Can make the Date Range Picker to become DateTime Range Picker

Can make the Date Range Picker to become DateTime Range Picker

hochunanghochunang Posts: 1Questions: 0Answers: 0
        $('#createddate-datepicker').datepicker({
            todayHighlight: true,
            templates: {
                leftArrow: '<i class="la la-angle-left"></i>',
                rightArrow: '<i class="la la-angle-right"></i>',
            },
        });

Able to make it datetime picker?

Replies

  • colincolin Posts: 15,240Questions: 1Answers: 2,599

    You need to specify the format for the date to appear, this example is demonstrating that.

    Colin

  • allanallan Posts: 63,522Questions: 1Answers: 10,473 Site admin

    $('#createddate-datepicker').datepicker({

    Isn't our DataTime library. That is presumably jQuery UI? You'd need to refer to their documentation, such as this example.

    Allan

Sign In or Register to comment.