Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

147
Views
How to add time in daterangepicker

I need to add time in a daterangepicker using jQuery and JavaScript. I am explaining my code below.

<input class="form-control" name="startgroupdate" id="stdate" type="text" placeholder=""  onfocus="removeBorder('stdate')">
$('input[name="startgroupdate"]').daterangepicker({
    singleDatePicker: true,
    showDropdowns: true,
    drops: "up",
    minDate: '01/01/2012',
    maxDate: '12/31/2017'
});

Here only the date is coming from the calendar, but I need to add also the time, so the result should be like "03/04/2017 12 10 PM".

over 4 years ago · Santiago Trujillo
3 answers
Answer question

0

Check this out..You need to add time property and daterangepicker js

<!DOCTYPE html>
<html>

<head>
  <script data-require="jquery@*" data-semver="3.1.1" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
  <link data-require="bootstrap@*" data-semver="4.0.5" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" />
  <script type="text/javascript" src="https://netdna.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>

  <link rel="stylesheet" href="style.css" />
  <link href="daterangepicker-bs3.css" rel="stylesheet" type="text/css" />
  <script src="moment.js"></script>
  <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-daterangepicker/2.1.25/daterangepicker.js"></script>
  <script src="script.js"></script>

</head>

<body>
  <h1>Hello Plunker!</h1>
  <input class="form-control" name="startgroupdate" id="stdate" type="text" placeholder="">
  <script>
    $(function() {
      $('input[name="startgroupdate"]').daterangepicker({
        timePicker: true,
        locale: {
          format: 'MM/DD/YYYY h:mm A'
        },
        singleDatePicker: true,
        showDropdowns: true,
        drops: "down",
        minDate: '01/01/2012',
        maxDate: '12/31/2017'
      });
    });
  </script>
</body>

</html>
over 4 years ago · Santiago Trujillo Report

0

Yo have to add property

 timePicker: true

may this links helps http://www.daterangepicker.com/#ex2

over 4 years ago · Santiago Trujillo Report

0

You need to add the timepicker flag to daterangepicker.

$('input[name="startgroupdate"]').daterangepicker({
    timePicker: true,
    timePickerIncrement: 30,
    singleDatePicker: true,
    showDropdowns: true  
    drops: "up",
    minDate: '01/01/2012',
    maxDate: '12/31/2017'
});
over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!