16/04/2012, 21:54
|
| | Fecha de Ingreso: septiembre-2010
Mensajes: 1.853
Antigüedad: 14 años, 2 meses Puntos: 6 | |
Respuesta: integrar modal jquery a fullcalendar hola amigos lo logre pude integrar a fullcalendar una ventana modal
voy a compartir espero a alguien le sirva
select: function(start, end, allDay) {
$("#dialog-form").dialog('open');
$( "#dialog:ui-dialog" ).dialog( "destroy" );
//$("#date-start").val($.fullCalendar.formatDate(start, 'MM/dd/yyyy'));
$("#start").val(start);
$("#end").val(end);
//$("#date-end").val($.fullCalendar.formatDate(end, 'MM/dd/yyyy'));
$("#allDay").val(allDay);
$( "#dialog-form" ).dialog({
autoOpen: false,
height: 600,
width: 680,
modal: true,
buttons: {
"Crear Nuevo Evento": function() {
//$( this ).dialog( "close" );
},
Cancelar: function() {
$( this ).dialog( "close" );
}
},
close: function() {
allFields.val( "" ).removeClass( "ui-state-error" );
}
}); |