Created
September 20, 2017 05:49
-
-
Save tisuchi/bfabdb8e3a171d9b659befa4cc1941c7 to your computer and use it in GitHub Desktop.
Change the date format in Daterangepicker - tisuchi.com
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
$('#calendar-field').daterangepicker( | |
{ | |
locale: { | |
format: 'YYYY-MM-DD' | |
}, | |
..... // other properties | |
}, | |
function(start, end, label) { | |
// code | |
}); | |
</script> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment