简体   繁体   中英

Jquery UI Datepicker altField input not working

I have two inputs with datepicker, I need that first datepicker can initialize another, this works great with altField , but the datepicker from the second input does not work anymore. I make a example with this data:

https://jsfiddle.net/5njLoxd5/

<input type="text" id="lightBillingStartdate" /><br/>
<input type="text" id="lightBillingFinishDate" /><br/>

$( "#lightBillingStartdate" ).datepicker({
    altField: "#lightBillingFinishDate",
    altFormat: "dd/mm/yy",
    dateFormat: "dd/mm/yy",
    maxDate: 0,
    onSelect: function(selected) {
        $("#lightBillingFinishDate").datepicker("option","minDate", selected);
    }        
});

$( "#lightBillingFinishDate" ).datepicker({
    dateFormat: "dd/mm/yy",
    maxDate: 0,
    onSelect: function(selected) {
                $("#lightBillingStartdate").datepicker("option","maxDate", selected);
    } 
});

I would use setDate method like so: https://jsfiddle.net/Twisty/5njLoxd5/2/

$("#lightBillingStartdate").datepicker({
  dateFormat: "dd/mm/yy",
  maxDate: 0,
  onSelect: function(selected) {
    $("#lightBillingFinishDate").datepicker("option", "minDate", selected);
    $("#lightBillingFinishDate").datepicker("setDate", selected);
  }
});

$("#lightBillingFinishDate").datepicker({
  dateFormat: "dd/mm/yy",
  maxDate: 0,
  onSelect: function(selected) {
    $("#lightBillingStartdate").datepicker("option", "maxDate", selected);
  }
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM