Issue 551: full calendar does not show the appointments
Status:  Done
Owner: ----
Closed:  Oct 2010
Reported by christia...@gmail.com, Jul 9, 2010
ALL appointments before 9 AM does not show anywhere but if ai change it it shows perfectly(after 900 AM ) 
can anyone say me what do i have to do to figure this out????
here is the js
$('#view_lmsys').fullCalendar({
		theme: true,
		defaultView: 'basicWeek',
		header: { left: 'prev,next', center: 'title', right: 'month,basicWeek,today' },
		events: "data.php",
		minTime: 5,
		firstHour: 7,
		allDaySlot: true
	});



and this is the php handler
$Events= array();
$fechaIni = date('Y-m-d',trim($_GET['start']));
$fechaFin = date('Y-m-d',trim($_GET['end']));
$DataAct = db_Execute("SELECT * FROM vw_actividades_fechas_cal2 WHERE fecha >= '$fechaIni' AND fecha < '$fechaFin'");
$x = 0;
while (!$DataAct->EOF) {
   $x++;
   $ff = split("-",$DataAct->fields['fecha']);
   $start = $DataAct->fields['fecha']."T".$DataAct->fields['hora'].":".$DataAct->fields['minutos'].":00Z";
   $end = $DataAct->fields['fecha']."T".($DataAct->fields['hora']+1).":".$DataAct->fields['minutos'].":00Z";
   $Events[] = array(
	'id' => $x,
	'title' => $DataAct->fields['asunto'],
	'start' => "$start",
	'end' => "$end",
	'url' => "javascript:vwActividad('".$DataAct->fields['id']."');",
	'className' => 'amarillo'
	 
   );
	$DataAct->MoveNext();
}
echo json_encode($Events);

Aug 25, 2010
Project Member #1 adamrs...@gmail.com
Please follow the instructions for submitting a bug (on Support page):

"...please submit a report with a detailed description and a demonstration of the bug. This can be a link to a website or a ZIP containing a runnable HTML file. Please include everything needed to recreate the bug (JS, CSS, event JSON)."

please isolate the problem in javascript only (i dont want to look through your php or sql) and give me an example that can recreate it when i run it. thanks
Oct 7, 2010
Project Member #2 adamrs...@gmail.com
(No comment was entered for this change.)
Status: Done