You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2007/01/23 01:01:44 UTC

svn commit: r498861 - /myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectOneTag.java

Author: bommel
Date: Mon Jan 22 16:01:43 2007
New Revision: 498861

URL: http://svn.apache.org/viewvc?view=rev&rev=498861
Log:
(TOBAGO-215) markup attribute for all input components

Modified:
    myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectOneTag.java

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectOneTag.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectOneTag.java?view=diff&rev=498861&r1=498860&r2=498861
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectOneTag.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/taglib/component/SelectOneTag.java Mon Jan 22 16:01:43 2007
@@ -36,8 +36,8 @@
   }
 
   protected void setProperties(UIComponent component) {
-    ComponentUtil.setMarkup(component, markup);
     super.setProperties(component);
+    ComponentUtil.setMarkup(component, markup);
   }
 
   public void setMarkup(String markup) {