amsul / pickadate.js

The mobile-friendly, responsive, and lightweight jQuery date & time input picker.
http://amsul.ca/pickadate.js
MIT License
7.7k stars 1.02k forks source link

pre-fill values don't work #1222

Open tecomunico opened 3 years ago

tecomunico commented 3 years ago

Hi, this is my code:

Html: <button type="button" id="ChangeButton">Click</button> <input type="date" name="DateOfBirth" id="DateOfBirth" class="form-control datepicker" data-value="">

I change the attribute programmatically:

$("#ChangeButton").click(function () { $("#DateOfBirth").data("data-value","1966-12-14"); })

My pickadate Setting $("#DateOfBirth").pickadate( { format: "ddd dd, mmm yyyy", formatSubmit: "yyyy-mm-dd" });

What is Wrong ?