How do I get that object name circled in red (see image). I've already tried this and it didn't work: https://stackoverflow.com/a/10314492/3112803
Details: I have a DHTMLX grid where cells in a certain column can be a different type per row (either a checkbox or an image). From what I can tell their API gives you a way to SET different types, example: mygrid.setCellExcellType(rowId,colIdx,"img");
but they don't have a function for GETTING the types. http://docs.dhtmlx.com/doku.php?id=dhtmlxgrid:api_toc_alpha I need to determine what type the cell is (and I don't want to do it via looking at the innerHTML). Look at the attached image from Chrome console. Those are the objects in the cells. If I can somehow grab what is circled in red then I could determine the type. I don't know how to grab that name.
UPDATE: Still not solved. Another forum on this same issue: http://forum.dhtmlx.com/viewtopic.php?f=2&t=34217&start=0