Bakir Odeh
Bakir Odeh

Reputation: 23

How i can change date format in date picker

How i can change date format in Date Picker from (19/07/2015) to (2015-07-19)

my Date Picker file :

http://lirz.com/picker.date.js

Upvotes: 0

Views: 78

Answers (1)

styfle
styfle

Reputation: 24610

I read the docs and it looks like this should work.

$('.datepicker').pickadate({
  format: 'yyyy-mm-dd',
  formatSubmit: 'yyyy-mm-dd'
})

Upvotes: 1

Related Questions