Upgrade Issues from V4 to V5

I am trying to upgrade from a working v4 grid to v5. I’m using the .Net connector and since upgrading I’m receiving errors.

In chrome the error says:

uncaught RangeError: Maximum call stack size exceeded dhtmlx.js:9
at window.(anonymous function).dhtmlXGridObject.load [as load_connector]

Firefox reports the error as this.

too much recursion dhtmlx.js:9:869712
dhtmlXGridObject.prototype.load

Does anyone have any insight on what I can to get this grid working again. My load code looks like this.

var objHomeGrid = new dhtmlXGridObject(‘gridMain’);
objHomeGrid.enableMultiselect(false);
objHomeGrid.setImagePath(’/rwadmin/resources/vendors/dhtmlx/codebase/imgs/’);
objHomeGrid.setHeader(“ID,Name,Address,City,State,Zip”); objHomeGrid.attachHeader("#connector_text_filter,#connector_text_filter,#connector_text_filter,#connector_text_filter,#connector_text_filter,#connector_text_filter");
objHomeGrid.setInitWidths(“110,*,200,150,110,110”);
objHomeGrid.setColTypes(“ron,ro,ro,ro,ro,ro”);
objHomeGrid.setColAlign(“right,left,left,left,left,left”);
objHomeGrid.setColSorting(“connector,connector,connector,connector,connector,connector”);
objHomeGrid.init();
objHomeGrid.load(“app/display/outputs/Building_Output.ashx”, “XML”);

Thanks
Justin

Unfortunately the problem cannot be reproduced locally.
Your provided code works well for me locally.
If the problem still occurs for you please, provide a complete demo or share a demo link, where the issue can be reconstructed.
Here you can find a tutorial about creating a complete demo:
docs.dhtmlx.com/tutorials__auxi … pport.html