I am trying to do the grid example from the documentation. I get the grid displayed with my data but I am getting error type: LoadXML / Incorrect XML warning when I edit a record in-line. From what I understand it has something to do with the dataprocessor. I have verified the suite js files exist as coded. I believe the order of js files is also correct.
Any assistance would be appreciated. James
[url]Start DHTMLX Docs
[code]
<link rel="STYLESHEET" type="text/css" href="codebase/dhtmlx.css">
[/code]
[code]<?php
require_once(“…/codebase/grid_connector.php”);// includes the appropriate connector
$res=mysql_connect(“localhost”,“root”,“mypassword”);//connects to a server that contains the desired DB
mysql_select_db(“mydbname”);// connects to the DB.
$conn = new GridConnector($res,“MySQL”);// connector initialization
$conn->render_table(“contacts”,“id”,“first_name,last_name,email1”);// data configuration
?>[/code]