List of usage examples for com.vaadin.v7.client.ui VScrollTable ALIGN_LEFT
char ALIGN_LEFT
To view the source code for com.vaadin.v7.client.ui VScrollTable ALIGN_LEFT.
Click Source Link
From source file:com.haulmont.cuba.web.widgets.client.aggregation.TableAggregationRow.java
License:Apache License
protected void setAlign(char align, final Element container) { // CAUTION: copied from VScrollTableRow switch (align) { case VScrollTable.ALIGN_CENTER: container.getStyle().setProperty("textAlign", "center"); break;/*from w w w . j ava2 s.com*/ case VScrollTable.ALIGN_LEFT: container.getStyle().setProperty("textAlign", "left"); break; case VScrollTable.ALIGN_RIGHT: default: container.getStyle().setProperty("textAlign", "right"); break; } }