We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.client.widget.escalator.
Interface Row
-
All Known Implementing Classes:
public interface Row
A representation of a row in an
Escalator
.Since:
7.4
Author:
Vaadin Ltd
-
-
Method Summary
All Methods Modifier and Type Method Description com.google.gwt.dom.client.TableRowElement
getElement()
Gets the root element for this row.
int
getRow()
Gets the row index.
-
-
-
Method Detail
-
getRow
int getRow()
Gets the row index.
Returns:
the row index
-
getElement
com.google.gwt.dom.client.TableRowElement getElement()
Gets the root element for this row.
The
EscalatorUpdater
may update the class names of the element and add inline styles, but may not modify the contained DOM structure.If you wish to modify the cells within this row element, access them via the
List<
objects passed in toCell
>EscalatorUpdater.updateCells(Row, List)
Returns:
the root element of the row
-
-