Categories | Question details Back To List | ||
Height of header row? Hi, I want to find the height of header cell/row. There is function for width like getWidth()........ getColWidth(). I didnt find any function to find the height of header row. Thanks. Answer posted by Stanislav on Nov 27, 2007 07:13 The height of header is not fixed, so it can changed based on currect column size and header value. You can access DOM element of header as grid.hdr.rows[i].cells[j] and poll its property for more details. |