Ver Mensaje Individual
  #4 (permalink)  
Antiguo 14/11/2013, 17:46
Avatar de Alexis88
Alexis88
Philosopher
 
Fecha de Ingreso: noviembre-2011
Ubicación: Tacna, Perú
Mensajes: 5.552
Antigüedad: 13 años
Puntos: 977
Respuesta: Problema con datepicker

Ok, entonces, en la línea $("#tuBoton").click(function(){ colocala variable que recibes, quedando de la siguiente forma:

Código Javascript:
Ver original
  1. $("#tuBoton").click(function(fechaBaseDatos){
  2.    var dates = ['11-10-2013', '11-12-2013'];
  3.     //tips are optional but good to have
  4.  
  5.     $('#fechaBitacora1').datepicker({
  6.         dateFormat: 'dd/mm/yy',
  7.         beforeShowDay: highlightDays,
  8.         showOtherMonths: true,
  9.         numberOfMonths: 1,
  10.     });
  11.  
  12.     function highlightDays(date) {
  13.         for (var i = 0; i < dates.length; i++) {
  14.             if (new Date(dates[i]).toString() == date.toString()) {
  15.                 return [true, 'highlight', ];
  16.             }
  17.         }
  18.         return [true, ''];
  19.     }
  20. });