Given the cell editing demo (Cell Editing), how would I go about getting the DOM element of a given row?
In other controls, such as the Combo Box, calls like $('#comboBox').jqxComboBox('getItems');
will return objects with an element field, that directly links the item object to its element (provided it is in view).
However, when I call any of getrowdata, getrows, getboundrows, or getdisplayrows, there is no reference to a row’s element.
In the given demo, the grid’s scrollbar dynamically adds and removes items as it scrolls, making a simple index reference impractical. The row elements do not appear to contain any data- values, so referencing them based off of some unique ID is also a no-go.
With these limitations in mind, how do I get from a display or bound index of a row, to the DOM element that is the row?