JSON a second class data format

docs.dhtmlx.com/doku.php?id=dhtm … at_details

If you go to that link you see that it mentions the following:

“Top level object contains a collection of rows, each row has a mandatory data array containing data for all cells. Each row representing an object may contain additional parameters; they will affect the grid in the same manner as attributes of row tag in case of loading from XML.”

So the expectation is that you can pass in the same attributes, userdata, etc. and it will be parsed and respected in the same way as XML loading. Yet when you look at the source for row loading JSON, none of this takes place:

_process_json_row:function(r, data){
		r._attrs={
		};
	
		for (var j = 0; j < r.childNodes.length; j++)r.childNodes[j]._attrs={
		};
	
		this._fillRow(r, (this._c_order ? this._swapColumns(data.data) : data.data));
		return r;
	},

The support here is overwhelming, really convincing that we should buy your product.

Was there a question, or did you just want to start a debate?

Personally, I’ve found the support and community to be quite responsive, keeping in mind the timezone differences, etc. I do need to provide as much information about my situation as possible, and sometimes this results in my solving my own issues. (When that happens, I share the solution, just because that’s what you should do in a community forum.) Maybe you’re approaching your problems the wrong way.

Good luck,
Rob