Ver Mensaje Individual
  #3 (permalink)  
Antiguo 23/06/2004, 18:37
Buffyta
 
Fecha de Ingreso: mayo-2004
Mensajes: 5
Antigüedad: 20 años, 7 meses
Puntos: 0
Segun el instructivo, tengo que poner unos links a un par de archivos .js (que estan dirigidos a donde los guardé) y en algun sitio tengo que poner un "<div id="calendar-container"></div>" (que es donde va a estar el calendario) y este script luego:
<script type="text/javascript">
function dateChanged(calendar) {
// Beware that this function is called even if the end-user only
// changed the month/year. In order to determine if a date was
// clicked you can use the dateClicked property of the calendar:
if (calendar.dateClicked) {
// OK, a date was clicked, redirect to /yyyy/mm/dd/index.php
var y = calendar.date.getFullYear();
var m = calendar.date.getMonth(); // integer, 0..11
var d = calendar.date.getDate(); // integer, 1..31
// redirect...
window.location = "/" + y + "/" + m + "/" + d + "/index.php";
}
};

Calendar.setup(
{
flat : "calendar-container", // ID of the parent element
flatCallback : dateChanged // our callback function
}
);
</script>"


Supuestamente con eso alcanza, pero no logro nada...

nadie conoce algun codigo que me sirva?