Ver Mensaje Individual
  #7 (permalink)  
Antiguo 14/08/2008, 16:45
v_faby
 
Fecha de Ingreso: marzo-2008
Mensajes: 1
Antigüedad: 16 años, 2 meses
Puntos: 0
Respuesta: jscalendar sin Domingos

Calendar.setup({
inputField : "f_date_c1", // id of the input field
ifFormat : "%B %e, %Y", // format of the input field
button : "f_trigger_c1", // trigger for the calendar (button ID)
align : "Tl", // alignment (defaults to "Bl")
singleClick : true,
dateStatusFunc : function (date) { // disable weekend days (Saturdays == 6 and Subdays == 0)
return (date.getDay() == 6 || date.getDay() == 0) ? true : false;}


});

Con lo que esta en azul, puedes deshabilitar sabados y domingos(0), Espero te sirva.
Saludos