Ver Mensaje Individual
  #6 (permalink)  
Antiguo 23/05/2013, 17:01
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años, 5 meses
Puntos: 2135
Respuesta: Problema beforeShowDay ZendX_JQuery_Form_Element_DatePicker

Lee la documentación, aquí hay un ejemplo:
Código Javascript:
Ver original
  1. jQuery('#date').datepicker({
  2.         minDate: new Date(2010, 0, 1),
  3.         maxDate: new Date(2010, 5, 31),
  4.         dateFormat: 'DD, MM, d, yy',
  5.         constrainInput: true,
  6.         beforeShowDay: noWeekendsOrHolidays
  7.     });