getAttributes().remove(ATTR_WIDTH_LIST_STRING);
}
public void encodeBegin(FacesContext facesContext) throws IOException {
UILayout.prepareDimension(facesContext, this);
SheetState state = getSheetState(facesContext);
if (state.getFirst() > -1 && state.getFirst() < getRowCount()) {
ValueBinding valueBinding = getValueBinding(ATTR_FIRST);
if (valueBinding != null) {
valueBinding.setValue(facesContext, state.getFirst());
} else {
setFirst(state.getFirst());
}
}
super.encodeBegin(facesContext);
}