Categories | Question details Back To List | ||
How to get Row ID/Index of a particular cell? Hi, I have written a custom excell. I want to find out the current cell's row id/index. Is there any way to do that? Thanks! Answer posted by dhxSupport on May 07, 2009 04:01 Inside custom eXcell creation function you can get index of the cell with reference: var ind=this.cell.cellIndex, id of a row: var id=this.cell.parentNode.idd; |