Hi,
I am having some trouble loading Scheduler. Here’s a page, which loads something in Firefox but not IE… I have not understood from the documentation, what I should do.
Can you help me to eliminate error?
Connector:
<?php
require_once('../connect/config.php');
require_once('../codebase/scheduler_connector.php');
$res=mysql_connect($dbhost, $dbuser, $dbpass);
mysql_select_db("my_database");
$calendar = new SchedulerConnector($res);
$calendar->render_sql("Select * from my_grid","grid_id","grid_starttime,grid_starttime,grid_name","grid_itemtype");
?>
Html:
Calendar View<script type="text/javascript">
var scheduler;
scheduler.config.xml_date="%Y-%m-%d %H:%i";
scheduler.config.map_initial_position = new google.maps.LatLng(40.719837,-73.992348);
scheduler.init('scheduler_here',null,"week");
scheduler.load("connect/get_scheduler.php");
</script>