List of usage examples for com.google.gwt.dom.client TableSectionElement is
public static boolean is(Node node)
From source file:org.drools.guvnor.client.decisiontable.cells.AbstractPopupEditCell.java
License:Apache License
private Element getTableCellElementAncestor(Element e) { Element parent = e.getParentElement(); while (!TableSectionElement.is(parent) && !TableCellElement.is(parent)) { parent = parent.getParentElement(); }// www. j a v a 2s. c om return parent; }