Grid USERDATA dhtmlx 6

Hi, is it possible to set userdata in dhtmlxgrid 6?
Thanks a lot.

I’m not sure what you’re specific application of userdata is, but I’ve found that if I provide extra data to my grid’s data object, it retains all the data but only displays the items that there are columns for. It seems to me you could send extra data with the load request (or use the update() function to add it to existing data).

You can see what data is available using the CellClick event:

grid.events.on("CellClick", function(row,column,e){
    console.log(row);
});

You use any additional data for your row, as an attribute, but unfortunately it is not available to add such userdata to a cell.