public String getSelectLabel(FacesContext facesContext, UIComponent component) {
   AbstractInplaceSelect select = (AbstractInplaceSelect) component;
   String label = getSelectInputLabel(facesContext, select);
   if (!select.isDisabled() && (label == null)) {
     label = select.getDefaultLabel();
   }
   return label;
 }
 protected String getListWidth(AbstractInplaceSelect select) {
   String width = HtmlDimensions.formatSize(select.getListWidth());
   if (width == null || width.length() == 0) {
     width = "200px";
   }
   return width;
 }
 protected String getListHeight(AbstractInplaceSelect select) {
   String height = HtmlDimensions.formatSize(select.getListHeight());
   if (height == null || height.length() == 0) {
     height = "100px";
   }
   return height;
 }
 public String getListCss(UIComponent component) {
   AbstractInplaceSelect inplaceSelect = (AbstractInplaceSelect) component;
   String css = inplaceSelect.getListClass();
   css = (css != null) ? concatClasses("rf-is-lst-cord", css) : "rf-is-lst-cord";
   return css;
 }