Categories | Question details Back To List | ||
Dhtmlx grid header , Attched header row index we have editable header & attached header in the grid. our application required to save header and attached header text/data of respective cell,We are getting column index but not row index. How to get row index of header & attached header? Answer posted on Jun 12, 2007 19:10 The header is not included in grid data model, it is separate instance and grid doesn't provide API to access it, but if necessary you can access header content by next code var hdrCell=grid.hdr.rows[hdrRowIndex].cells[cellIndex] alert(hdrCell.innerHTML); hdrRowIndex - 1-based index of headers row. Top header row has hdrRowIndex==1 Answer posted by Andrei (Support) on Dec 01, 2014 06:43 If you haven't found the needed information there and still looking for a solution, you will find the additional help checking tabs in javascript and java script calendar. |