Mobile version + Google Calendar

Hi:

I’m trying to merge the Mobile Version of Scheduler + gCal_proxy_v2 package
(dhtmlx.com/blog/?p=1759)

I have joined all the “codebase” files in the same directory … and I’m using in this way:

Loading the JS:


And then the initialization:

	<script type="text/javascript" charset="utf-8">

		scheduler.config.init_date = new Date(2013,3,25);
		
		dhx.ready(function(){
	        dhx.ui.fullScreen();
			dhx.ui({
			   	view: "scheduler",
				id: "scheduler"
			});
			
			$$("scheduler").load("./server/01_proxy.php","scheduler");
			var dp =  new dataProcessor("./server/01_proxy.php");
			dp.init(scheduler);
		});
	</script>

The problem is that calendar is not showing the events, and there’s no errors in console.

If I go to server/01_proxy.php it returns a valid XML with the my google calendar correctly grabbed and parsed into the XML.

Any ideas ? Thank you !

I have to add that, I have checked the gCal_proxy sample file and, the proxy is not working either.

The proxy php itself returns the XML correctly, but the sample.html does not show the events, and it has no console/javascript errors either. :cry:

Please save the generated xml as xml file and attach the complete demo - we will take a look at it.