Guest User

Untitled

a guest
Nov 17th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. function dateStartFinishMaterial() {
  2. $('.datepicker').pickadate({
  3.  
  4. firstDay: true,
  5. selectMonths: true, // Creates a dropdown to control month
  6. labelMonthNext: 'Mes siguiente',
  7. labelMonthPrev: 'Mes anterior',
  8.  
  9.  
  10. labelMonthSelect: 'Selecciona un mes',
  11. labelYearSelect: 'Selecciona un año',
  12. monthsFull: [ 'enero', 'febrero', 'marzo', 'abril', 'mayo', 'junio', 'julio', 'agosto', 'septiembre', 'octubre', 'noviembre', 'diciembre' ],
  13. monthsShort: [ 'Ene', 'Feb', 'Mar', 'Abr', 'May', 'Jun', 'Jul', 'Ago', 'Sep', 'Oct', 'Nov', 'Dic' ],
  14. weekdaysFull: [ 'Domingo', 'Lunes', 'Martes', 'Miércoles', 'Jueves', 'Viernes', 'Sábado' ],
  15. weekdaysShort: [ 'Dom', 'Lun', 'Mar', 'Mie', 'Jue', 'Vie', 'Sab' ],
  16. weekdaysLetter: [ 'Dom', 'Lun', 'Mar', 'Mie', 'Jue', 'Vie', 'Sab' ],
  17. today: false,
  18. clear: false,
  19. formatSubmit: 'mm/dd/yyyy',
  20. selectYears: 4, // Creates a dropdown of 15 years to control year,
  21. min: restDate,
  22. max: new Date(2019, currDate.getMonth()+1, currDate.getDate()),
  23. close: false,
  24. closeOnSelect: true // Close upon selecting a date,
  25. });
Add Comment
Please, Sign In to add comment