wdCalendar editar titulo evento en vista dia y vista mes

Iniciado por graphixx, Agosto 02, 2015, 04:27:08 AM

Tema anterior - Siguiente tema

0 Miembros y 1 Visitante están viendo este tema.

wdCalendar editar titulo evento en vista día y vista mes

Ubicándonos en el archivo: "jquery.calendar.js"

Para la vista día:
Dentro de la función: "function BuildDayEvent(theme, e, index) {"

Linea 792:
Original:
Código: text

icons.push("<I class=\"cic cic-tmr\">&nbsp;</I>"+" "+e.event[1]);

Editada:
Código: text

icons.push("<I class=\"cic cic-tmr\">&nbsp;</I>"+" "+"reservado");


PD: creo que el "e.event[1]" no existe en la version original, yo lo agregue para que me colocara el nombre del evento en el titulo si mal no recuerdo jeje

Queda así en vista día:
You are not allowed to view links. You are not allowed to view links. Register or Login or You are not allowed to view links. Register or Login

Para la vista mes:
Dentro de la funcion: "function BuildMonthDayEvent(e, cday, length) {"

Linea 1124:
Original:
Código: text

cen = pZero(e.st.hour) + ":" + pZero(e.st.minute) + " " + e.event[1];

Editada:
Código: text

cen = pZero(e.st.hour) + ":" + pZero(e.st.minute) + " " + "reservado";


Queda así:
You are not allowed to view links. You are not allowed to view links. Register or Login or You are not allowed to view links. Register or Login
Mi Blog Personal
You are not allowed to view links. You are not allowed to view links. Register or Login or You are not allowed to view links. Register or Login