private static final Log LOG = LogFactory.getLog(GridLayoutRenderer.class);
public int getFixedHeight(FacesContext facesContext, UIComponent component) {
int height = calculateLayoutHeight(facesContext, component, false);
LayoutInformationProvider containerRenderer =
ComponentUtil.getRenderer(facesContext, component);
height += containerRenderer.getHeaderHeight(facesContext, component);
height += containerRenderer.getPaddingHeight(facesContext, component);
return height;
}