You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2012/07/10 14:56:54 UTC

svn commit: r1359646 - /myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/taglib/component/TreeSelectTagDeclaration.java

Author: lofwyr
Date: Tue Jul 10 12:56:54 2012
New Revision: 1359646

URL: http://svn.apache.org/viewvc?rev=1359646&view=rev
Log:
TOBAGO-1049: Tree
 - the checkbox for tree selection should be rendered by default

Modified:
    myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/taglib/component/TreeSelectTagDeclaration.java

Modified: myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/taglib/component/TreeSelectTagDeclaration.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/taglib/component/TreeSelectTagDeclaration.java?rev=1359646&r1=1359645&r2=1359646&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/taglib/component/TreeSelectTagDeclaration.java (original)
+++ myfaces/tobago/trunk/tobago-core/src/main/java/org/apache/myfaces/tobago/internal/taglib/component/TreeSelectTagDeclaration.java Tue Jul 10 12:56:54 2012
@@ -53,6 +53,6 @@ public interface TreeSelectTagDeclaratio
    * Show a checkbox to visualize the selection state.
    */
   @TagAttribute
-  @UIComponentTagAttribute(type = "boolean", defaultValue = "false")
+  @UIComponentTagAttribute(type = "boolean", defaultValue = "true")
   void setShowCheckbox(String showCheckbox);
 }