Issue 597: Time never displayed
Status:  Done
Owner: ----
Closed:  Aug 2010
Reported by cfbo...@gmail.com, Aug 10, 2010
First sorry for my poor english...


What steps will reproduce the problem?
Here is my code with json :

			array_unshift($tab,array(
			'id' => $data['id'],
			'title' => utf8_encode($data['title']),
			'start' => $data['start_date']."T".$hour[0].":".$hour[1].":00",
			'allDay' => 'false',
			'showTime' => 'true',
			'url' => "http://www.mysite.com/",
			'className' => $data['type']
		));

the result is : 

{"id":"292","title":"TITLE","start":"2010-07-17T23:00:00","allDay":"false","showTime":"true","url":"http:\/\/www.mysite.com\/","className":"soiree"}

But the calendar does not displayed the time.

What is the expected output? What do you see instead?
I want to show the time on my events.

What version of the product are you using? On what operating system?
Version 1.4.7, using on Windows XP, Chrome and Firefox

Aug 25, 2010
Project Member #1 adamrs...@gmail.com
you need to set allDay to the boolean value false, not the string "false", so just remove the quotes
Status: Done