Categories | Question details Back To List | ||
how to get dhtmlXLayoutObject Collapse status such as: myLayout.cells("a").status() I want to know cells("a") is Collapse or Expand Answer posted by Alex (support) on Jun 05, 2009 01:11 There is isCollapsed() method that can be used in this case: var state = dhxLayout.cells(cellId).isCollapsed(); |