Class GridColumnElement
- java.lang.Object
-
- com.vaadin.flow.component.grid.testbench.GridColumnElement
-
public class GridColumnElement extends Object
A TestBench element representing a<vaadin-grid-column>element. This is not a TestBenchElement as polyfilled browsers are not capable of finding it or handling it as a web element.
-
-
Constructor Summary
Constructors Constructor Description GridColumnElement(Long __generatedId, GridElement grid)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)protected Longget__generatedId()For internal use only.GridTHTDElementgetFooterCell()Gets the footer cell for this column.GridTHTDElementgetHeaderCell()Gets the header cell for this column.
-
-
-
Constructor Detail
-
GridColumnElement
public GridColumnElement(Long __generatedId, GridElement grid)
-
-
Method Detail
-
get__generatedId
protected Long get__generatedId()
For internal use only.- Returns:
- the generated id for the column
-
getHeaderCell
public GridTHTDElement getHeaderCell()
Gets the header cell for this column.A column always has a header cell, even if the header is not shown.
- Returns:
- the header cell for the column
-
getFooterCell
public GridTHTDElement getFooterCell()
Gets the footer cell for this column.A column always has a footer cell, even if the footer is not shown.
- Returns:
- the footer cell for the column
-
-