Search in sources :

Example 1 with TableRowElement

use of elemental.html.TableRowElement in project che by eclipse.

the class Elements method createTRElement.

public static TableRowElement createTRElement(String... classNames) {
    TableRowElement elem = (TableRowElement) getDocument().createElement("tr");
    addClassesToElement(elem, classNames);
    return elem;
}
Also used : TableRowElement(elemental.html.TableRowElement)

Aggregations

TableRowElement (elemental.html.TableRowElement)1