Author: amarkhel
Date: 2010-08-23 12:20:07 -0400 (Mon, 23 Aug 2010)
New Revision: 18936
Modified:
trunk/ui/input/ui/src/main/java/org/richfaces/renderkit/AutocompleteListLayoutStrategy.java
trunk/ui/input/ui/src/main/java/org/richfaces/renderkit/AutocompleteTableLayoutStrategy.java
Log:
Checkstyle fix
Modified:
trunk/ui/input/ui/src/main/java/org/richfaces/renderkit/AutocompleteListLayoutStrategy.java
===================================================================
---
trunk/ui/input/ui/src/main/java/org/richfaces/renderkit/AutocompleteListLayoutStrategy.java 2010-08-23
15:59:38 UTC (rev 18935)
+++
trunk/ui/input/ui/src/main/java/org/richfaces/renderkit/AutocompleteListLayoutStrategy.java 2010-08-23
16:20:07 UTC (rev 18936)
@@ -24,7 +24,7 @@
ResponseWriter responseWriter = facesContext.getResponseWriter();
responseWriter.startElement(HTML.UL_ELEMENT, component);
responseWriter.writeAttribute(HTML.ID_ATTRIBUTE,
getContainerElementId(facesContext, component), null);
- responseWriter.writeAttribute(HTML.CLASS_ATTRIBUTE, "cb_list_ul",
null);
+ responseWriter.writeAttribute(HTML.CLASS_ATTRIBUTE, "rf-au-list-ul",
null);
}
public void encodeItemsContainerEnd(FacesContext facesContext, UIComponent component)
throws IOException {
@@ -36,7 +36,7 @@
ResponseWriter writer = facesContext.getResponseWriter();
writer.startElement(HTML.LI_ELEMENT, comboBox);
- writer.writeAttribute(HTML.CLASS_ATTRIBUTE, "cb_option cb_font
rf-ac-i", null);
+ writer.writeAttribute(HTML.CLASS_ATTRIBUTE, "rf-au-option rf-au-font
rf-au-input", null);
if (comboBox.getChildCount() > 0) {
for (UIComponent child : comboBox.getChildren()) {
Modified:
trunk/ui/input/ui/src/main/java/org/richfaces/renderkit/AutocompleteTableLayoutStrategy.java
===================================================================
---
trunk/ui/input/ui/src/main/java/org/richfaces/renderkit/AutocompleteTableLayoutStrategy.java 2010-08-23
15:59:38 UTC (rev 18935)
+++
trunk/ui/input/ui/src/main/java/org/richfaces/renderkit/AutocompleteTableLayoutStrategy.java 2010-08-23
16:20:07 UTC (rev 18936)
@@ -12,7 +12,7 @@
public class AutocompleteTableLayoutStrategy extends AbstractAutocompleteLayoutStrategy
implements
AutocompleteEncodeStrategy {
- public void encodeFakeItem(FacesContext facesContext, UIComponent component) throws
IOException {
+ public void encodeFakeItem(FacesContext facesContext, UIComponent component) throws
IOException {
ResponseWriter responseWriter = facesContext.getResponseWriter();
responseWriter.startElement(HTML.TD_ELEM, component);
responseWriter.writeAttribute(HTML.STYLE_ATTRIBUTE, "display:none",
null);
Show replies by date