I’ve just downloaded the video samples via dhtmlx.com/docs/download/dhtmlxconnector_php_video_samples.zip and just trying out the samples here.
When loading the associated connector.php I get an XML tree fully populated, however upon loading sample.html I have a blank grid.
Running WAMP 2.0. I haven’t customized a thing, simply tried connecting it to the SQL table which comes with dhtmlx Scheduler. Here is the source:
connector.php:
<?php
require_once("…/dhtmlxConnector_php/codebase/grid_connector.php");
$res=mysql_connect(“localhost”,“root”,“randompass”);
mysql_select_db(“testDB”);
$grid = new GridConnector($res);
$grid->dynamic_loading(100);
$grid->render_table(“events”,“event_id”,“event_name,details”);
?>
sample.html:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
“http://www.w3.org/TR/html4/loose.dtd”>
Any ideas? Thank you in advance.