Method from javax.faces.component.html.HtmlColumn Detail: |
public String getFooterClass() {
return (java.lang.String) getStateHelper().eval(PropertyKeys.footerClass);
}
Return the value of the footerClass property.
Contents: Space-separated list of CSS style class(es) that will be
applied to any footer generated for this column.
|
public String getHeaderClass() {
return (java.lang.String) getStateHelper().eval(PropertyKeys.headerClass);
}
Return the value of the headerClass property.
Contents: Space-separated list of CSS style class(es) that will be
applied to any header generated for this column.
|
public boolean isRowHeader() {
return (java.lang.Boolean) getStateHelper().eval(PropertyKeys.rowHeader, false);
}
Return the value of the rowHeader property.
Contents: Flag indicating that this column is a row header column and
therefore cells in this column should be rendered with "th"
instead of "td" and must have the 'scope="row"' attribute.
|
public void setFooterClass(String footerClass) {
getStateHelper().put(PropertyKeys.footerClass, footerClass);
}
|
public void setHeaderClass(String headerClass) {
getStateHelper().put(PropertyKeys.headerClass, headerClass);
}
|
public void setRowHeader(boolean rowHeader) {
getStateHelper().put(PropertyKeys.rowHeader, rowHeader);
}
|