Questions tagged [jquery-ui-datepicker]

Introducing a remarkable datepicker widget courtesy of jQuery-ui that empowers users to effortlessly choose any desired date either from a convenient popup or directly within an inline calendar.

I would like to customize the year range for a jQuery Date Picker to either start from the year 1900 up to the current year, or from 1900 to

Hello everyone, I have successfully implemented the Jquery Date picker on my website. However, I am facing a minor issue - I want to set the Start year to 1900 and the End year to either the Current Year or 9999. Upon inspecting the script, I found the fo ...

Adjusting date in jQuery UI Datepicker based on current time of day

I am currently developing an online store for a friend, and they have very specific shipping requirements that I need the datepicker functionality to adhere to. Their deliveries only take place on Mondays, Wednesdays, and Fridays. Additionally, at 12pm on ...

JQuery plugin for creating interactive date selection forms

Having some trouble creating a dynamic form. The datepicker seems to only work on the first row and I can't click it. Tried a few different codes but no luck so far. Below is the code excluding the PHP part, which is just for inserting into a database. M ...

Issue with change event not firing upon page load

In my production record creation page, I have implemented functionality to handle different line, shift, and date combinations. There are drop down menus for selecting the line and shift, as well as a jQuery date picker for selecting the date. One issue I ...

Navigating through the various iterations of jQuery

Unique Case Study I'm currently facing a dilemma involving the integration of jstree and jquery-ui datepicker. The scenario is this: I am attempting to utilize jquery-ui-datepicker on an input element that is dynamically inserted into the DOM after an AJ ...

The datepicker is refusing to update the date format

I've been attempting to adjust the date format for my datepicker, but it refuses to change. Below is the code I'm using: $(document).ready(function() { $('#dateselect').datepicker({ format: 'dd/mm/yyyy', o ...

How to implement a jQuery datepicker in Angular with two distinct date formats

I am utilizing a jquery ui datepicker in my angular application, The implementation looks like this: app.directive('dwdatepicker', function() { return { restrict: 'A', require : 'ngModel', link : function (scope, element, attr ...

Is there a way to figure out the number of days from the current date using jQuery UI datepicker?

Hello there, I'm currently facing an issue with calculating the number of days from the present to a chosen date after utilizing a jQuery datepicker. It seems that the date formatting is getting altered upon selection, causing discrepancies in the ca ...

Utilizing v-model alongside various JavaScript plugins within a single select element

I've incorporated the jQuery plugins select2 and datepicker into my project, utilizing custom directives for them. Everything was functioning smoothly until I attempted to retrieve the selected value using v-model, which resulted in a failure to bind ...

"Exploring the world of AngularJS Datepicker alongside the power

My desire is to have a calendar that displays only the option of selecting a month and year, with the format being displayed as "yyyy-mm". Once the month and year are selected, I need it to update the ng-model variable value in the specified format. I've ...

Determine the End Date based on the Start Date

I currently have three input fields set up like this : Warranty Start Date : <input id="WarrantyStartDate" value="2015-11-22" /> Warranty period : <input id="WarrantyStartDate" value="24"/> //24 months// Warranty End Date : <input id="Warr ...

How to implement a Datapicker plugin in jQuery version 2.1.1?

After discovering a datepicker plugin designed for JQuery version 1.1.1, I encountered compatibility issues with my current version of 2.1.1. Does anyone know if there is a datepicker plugin available specifically for jQuery 2.1.1? ...

Preventing selection of past dates in PHP input fields

<input id="datepicker" name="datepicker" class="calendar" /> Here is the unique script: <script> $(function() { $( "#datepicker" ).datepicker({ minDate: 0}); }); </script> here php excerpt. if( $date < strtotime ...

Implementing a feature to automatically set the datepicker value to the selected date upon page initialization

I am working with a datepicker element, identified by id="from_dt", and a button with id="fromToDate". When a date is selected from the datepicker and the button is clicked, the page will load. At that point, I want to transfer the selected date to a textb ...

Allow submission of the form only when the start and end dates in the jQuery Datepicker are filled

$('#datepicker_start').datepicker({ dateFormat: 'd-M-y' , onSelect: function(selected) { $("#datepicker_end").datepicker("option","10-03-2015", selected) } }); $('#datepicker_end').datepicker({ dat ...