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

149
Views
Implement a datePicker using javascript

I am trying to implement a date picker on a field , code is shown below but it does not work. I have used Pikaday Javascript calender.

<div class="form-group">
                @Html.LabelFor(model => model.TimePeriod.EndDate, htmlAttributes: new { @class = "control-label col-md-8" })
                <div>
                    @Html.EditorFor(model => model.TimePeriod.EndDate, new { htmlAttributes = new { @class = "datepicker form-control"} })
                    @Html.ValidationMessageFor(model => model.TimePeriod.EndDate, "", new { @class = "text-danger" })
                </div>
                <script src="~/Scripts/pikaday.js"></script>
                <link href="~/Content/css/pikaday.css" rel="stylesheet" />
                <link href="~/Content/css/site.css" rel="stylesheet" />
                <link href="~/Content/css/theme.css" rel="stylesheet" />
                <link href="~/Content/css/triangle.css" rel="stylesheet" />
                <script type="text/javascript">
                    //var currentTime = new Date()
                    var picker = new Pikaday(
                        {
                            field: document.getElementById('EndDate'),
                            firstDay: 1,
                            minDate: new Date('2010-01-01'),
                            maxDate: new Date('2033-12-12'),
                            yearRange: [2010, 2033],
                            numberOfMonths: 1,
                            theme: 'dark-theme'
                        });
                </script>
            </div>
   
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

The id was missing for the Html attribute. After adding the id="EndDate" which Pikaday is using - It resolved the issue. @Html.EditorFor(model => model.TimePeriod.EndDate, new { htmlAttributes = new { @class = "datepicker form-control", @id="EndDate"} })

about 4 years ago · Juan Pablo Isaza 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!