html id tags in rows

Hi - we are using the TreeGrid, and passing xml in the form of
…</>

We can access the rows via the grid javascript api, but do not see the row id within the html of the grid (i.e. if we run ‘viewsource’ on the browser).

We want to label each of the rows to enable us to automate testing of our application (e.g. using something like Selenium to findElementById)

Is there a setting to get the grid to ‘honor’ that row ID and populate also in the grid’s html ? Sure there is a setting we are missing somewhere…

Unfortunately there is no such feature for the rows.
The only solution is to use:
docs.dhtmlx.com/api__dhtmlxgrid_ … llids.html
it adds the ids for the grid cells.

Excellent - this worked for me. Thanks for your help !