All Questions
Tagged with jquery-ui-datepicker datepicker
759 questions
0
votes
0
answers
63
views
How to get datepicker to show today's date in a new form using php
I'm using PHP 8.2 and datepicker.
I have a form. It has two date fields, which both use the datepicker class. When the page loads, the form is empty (new record). But, the date fields default to 1970-...
0
votes
1
answer
525
views
React DatePicker - Click outside day of month and calendar auto close, can't not select end date?
React DatePicker - Click outside day of month and calendar auto close, can't not select end date?
When i clicked April 30 then React DatePicker auto close. And I not choose end date.
enter image ...
0
votes
1
answer
61
views
Why is my Bootstrap datepicker being duplicated if opened too early?
I have a datePicker in my code and when I open the datepicker before all requests are done when they are done it's adding a inline-datepicker inside my datepicker dropdown here's my code
<div class=...
0
votes
0
answers
51
views
jQuery date picker manual trigger
I have a working version of jQuery date picker, Just need to implement 2 more enhancements to it
The calendar function is not invoking while clicking the Date Icon,
however if I click the text field ...
0
votes
0
answers
52
views
Jquery datepicker does not work on a newly opened blank window
I tried apply jquery datepicker on a newly opened blank window (opened with window.open).
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
...
0
votes
1
answer
90
views
How do I add blocked dates like holidays to datepicker? [duplicate]
I need help in disabling specific dates on the jquery datepicker. I have successfully blocked out Sundays but I don't know how I could add blocked dates to the calendar. I looked through the existing ...
0
votes
1
answer
41
views
Datepicker: Disable second + fourth week?
I have my days of the week picked out and it works fine, but am unsure of how to implement disabling the second and fourth week.
Looked at some other solutions, but it's disabling my datepicker.
$('#...
1
vote
0
answers
116
views
JQuery Month & Year Picker with Custom Text in Dropdown or Last Selected Month & Year
I have a JQuery Month and Year picker and I'm trying to make the dropdowns of the month and year display a generic text or display the last selected month and year values. Right now it displays the ...
0
votes
2
answers
1k
views
Datepicker- Week starts on Sunday with Week number
How do I display week starts from Sunday in datepicker along with week numbers.
eg: I need Week starting from 12/03/23(Sunday) should display week number 11 instead of 10. Any help appreciated. thanks
...
0
votes
1
answer
29
views
How to set third min-max relationship for jQuery UI datepicker
In my application I'm using jquery datepicker for 3 date inputs, "receiveDate", "startDate" and "endDate". I already set my startDate always earlier than endDate by:
$(&...
1
vote
1
answer
75
views
How to modify URL when changing month by clicking on the next/before month arrows using bootstrap datepicker
I have a Bootstrap Datepicker and I'm trying to be able to modify the url by clicking on the next month arrow or month before arrow.
Datepicker example
When I pick some day on the calendar, the URL ...
-1
votes
2
answers
363
views
Сounting the number of working days without taking into account holidays and weekends in jQuery UI Datepicker
I use jQuery UI DatePicker and was able to disable weekends and holidays there (custom list). Now I need to count the number of working days in a month without taking into account the days off before ...
0
votes
1
answer
424
views
jquery ui datepicker - beforeShowDay not working when I first open the clendar
it looks like the beforeShowDay doesn't work the first time I open the calendar on the current month.
I'm having the jquery ui datepicker with few active days each month.
when I refresh the website ...
0
votes
2
answers
598
views
How can I add 1 day from the date selected? jQuery DatePicker [duplicate]
I currently have been making a leave request form. However, I am having a hard time adding +1 day to the end date of a user's leave end date. I tried e.date+1 and also e.date+1d but neither of them ...
0
votes
2
answers
423
views
How to get the date from the alternate datepicker field?
Datepicker has this function which allows you to ship the date into an alternative input with an alternate date format. In my program, I'm hiding the datepicker input and trigger open the calendar ...