Grid inline editing example xml error

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]

Project attached. Uses standard dhtmlx standard ‘sampledb’

Thanks
dhtml_test.zip (698 KB)

Please can someone please help me with this. I am just at a loss as to why inline edits are not working. Thanks

You need to include one more file, connector.js ( can be taken from connector’s package )

<script src="codebase/dhtmlx.js" type="text/javascript"></script> <script src="codebase/dhtmlxDataProcessor.js" type="text/javascript"></script> <script src="codebase/connector.js" type="text/javascript"></script>

Well now I’m embarrassed, thanks. :blush: